GetOrgBillingInformationResponse constructor

GetOrgBillingInformationResponse({
  1. PaymentMethodType? type,
  2. String? billingEmail,
  3. PaymentMethodCard? method,
  4. String? billingTier,
})

Implementation

factory GetOrgBillingInformationResponse({
  PaymentMethodType? type,
  $core.String? billingEmail,
  PaymentMethodCard? method,
  $core.String? billingTier,
}) {
  final $result = create();
  if (type != null) {
    $result.type = type;
  }
  if (billingEmail != null) {
    $result.billingEmail = billingEmail;
  }
  if (method != null) {
    $result.method = method;
  }
  if (billingTier != null) {
    $result.billingTier = billingTier;
  }
  return $result;
}