UserPackageSelection
A user package selection
Fields
billing_item
· BillingItem
· The related billing item billing_item_id
· ID
· The id of the related billing item initial_price_with_offering_coupon
· String
· The amount of the first payment for a package, including promo discounts offering_coupon_id
· ID
· The id of the related offering coupon recurring_payment
· RecurringPayment
· The related recurring payment requested_payment
· RequestedPayment
· The related requested payment requested_payment_id
· ID
· The id of the related requested payment Used By
Definition
"""A user package selection"""type UserPackageSelection { """ The related billing item """ billing_item: BillingItem
""" The id of the related billing item """ billing_item_id: ID
""" The time when the user package selection was created """ created_at: String!
""" Pagination cursor """ cursor: Cursor!
""" The unique identifier of the user package selection """ id: ID!
""" The amount of the first payment for a package, including promo discounts """ initial_price_with_offering_coupon: String
""" The related offering """ offering: Offering
""" The id of the related offering coupon """ offering_coupon_id: ID
""" The related recurring payment """ recurring_payment: RecurringPayment
""" The related requested payment """ requested_payment: RequestedPayment
""" The id of the related requested payment """ requested_payment_id: ID
""" The related user """ user: User}