SubscriptionRequestMessage constructor

SubscriptionRequestMessage({
  1. String? customerId,
  2. String? planId,
  3. DateTime? expiresAt,
  4. bool? onlyOnChargeSuccess,
  5. String? payableWith,
  6. bool? isCreditBased,
  7. int? priceCents,
  8. int? creditsCycle,
  9. int? creditsMin,
  10. List<SubscriptionSubitem>? subitems,
  11. List<CustomVariables>? customVariables,
})

Implementation

SubscriptionRequestMessage({
  this.customerId,
  this.planId,
  this.expiresAt,
  this.onlyOnChargeSuccess,
  this.payableWith,
  this.isCreditBased,
  this.priceCents,
  this.creditsCycle,
  this.creditsMin,
  this.subitems,
  this.customVariables,
});