AutoRenewingBasePlanType.fromJson constructor

AutoRenewingBasePlanType.fromJson(
  1. Map json_
)

Implementation

AutoRenewingBasePlanType.fromJson(core.Map json_)
    : this(
        accountHoldDuration: json_['accountHoldDuration'] as core.String?,
        billingPeriodDuration: json_['billingPeriodDuration'] as core.String?,
        gracePeriodDuration: json_['gracePeriodDuration'] as core.String?,
        legacyCompatible: json_['legacyCompatible'] as core.bool?,
        legacyCompatibleSubscriptionOfferId:
            json_['legacyCompatibleSubscriptionOfferId'] as core.String?,
        prorationMode: json_['prorationMode'] as core.String?,
        resubscribeState: json_['resubscribeState'] as core.String?,
      );