RenewDomainRequest.fromJson constructor

RenewDomainRequest.fromJson(
  1. Map json_
)

Implementation

RenewDomainRequest.fromJson(core.Map json_)
  : this(
      validateOnly: json_['validateOnly'] as core.bool?,
      yearlyPrice: json_.containsKey('yearlyPrice')
          ? Money.fromJson(
              json_['yearlyPrice'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );