OBJECT

RecurringPayment

Recurring Payment

link GraphQL Schema definition

  • type RecurringPayment {
  • # amount of recurring payment
  • amount_paid: String
  • # Amount of recurring payment with offering coupon factored in
  • amount_to_pay: String
  • # frequency payment should be made
  • billing_frequency: String
  • # number of billing items
  • billing_items_count: String
  • # date on which the recurring payment is canceled
  • canceled_at: String
  • # provider who canceled the recurring payment
  • canceled_by: User
  • # created at date
  • created_at: String
  • # Whether or not this recurring payment has scheduled billing item
  • has_scheduled_billing_item: Boolean
  • id: ID!
  • # canceled indicator
  • is_canceled: Boolean
  • # whether or not the recurring payments has been paused
  • is_paused: Boolean
  • # last billing item for this recurring payment
  • last_billing_item: BillingItem
  • # date of next payment
  • next_payment_date: String
  • # next payment date if recurring payment is restarted
  • next_restart_payment_date: String
  • # id of coupon
  • offering_coupon_id: ID
  • # offering id
  • offering_id: ID
  • # name of offering associated with recurring payment
  • offering_name: String
  • # original price
  • original_price: String
  • # date on which the recurring payment is paused
  • paused_at: String
  • # provider who paused the recurring payment
  • paused_by: User
  • # count of payments remaining or returns Until Canceled
  • payments_remaining: String
  • # id of receiver
  • recipient_id: ID
  • # number of times payment should repeat
  • repeat_tiems: String
  • # id of sender
  • sender_id: ID
  • # date payments should begin
  • start_at: String
  • # updated at date
  • updated_at: String
  • }