GetBillingServiceConfigResponse constructor

GetBillingServiceConfigResponse({
  1. BillingAddress? billingAddress,
  2. String? supportEmail,
  3. String? logoUrl,
  4. String? billingDashboardUrl,
})

Implementation

factory GetBillingServiceConfigResponse({
  BillingAddress? billingAddress,
  $core.String? supportEmail,
  $core.String? logoUrl,
  $core.String? billingDashboardUrl,
}) {
  final $result = create();
  if (billingAddress != null) {
    $result.billingAddress = billingAddress;
  }
  if (supportEmail != null) {
    $result.supportEmail = supportEmail;
  }
  if (logoUrl != null) {
    $result.logoUrl = logoUrl;
  }
  if (billingDashboardUrl != null) {
    $result.billingDashboardUrl = billingDashboardUrl;
  }
  return $result;
}