GetOrgBillingInformationResponse constructor
GetOrgBillingInformationResponse({
- PaymentMethodType? type,
- String? billingEmail,
- PaymentMethodCard? method,
- 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;
}