GoogleCloudApigeeV1ListRatePlansResponse.fromJson constructor

GoogleCloudApigeeV1ListRatePlansResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1ListRatePlansResponse.fromJson(core.Map json_)
    : this(
        nextStartKey: json_.containsKey('nextStartKey')
            ? json_['nextStartKey'] as core.String
            : null,
        ratePlans: json_.containsKey('ratePlans')
            ? (json_['ratePlans'] as core.List)
                .map((value) => GoogleCloudApigeeV1RatePlan.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );