GoogleCloudApigeeV1GrpcOperationConfig.fromJson constructor
GoogleCloudApigeeV1GrpcOperationConfig.fromJson(
- Map json_
Implementation
GoogleCloudApigeeV1GrpcOperationConfig.fromJson(core.Map json_)
: this(
apiSource: json_['apiSource'] as core.String?,
attributes: (json_['attributes'] as core.List?)
?.map((value) => GoogleCloudApigeeV1Attribute.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
methods: (json_['methods'] as core.List?)
?.map((value) => value as core.String)
.toList(),
quota: json_.containsKey('quota')
? GoogleCloudApigeeV1Quota.fromJson(
json_['quota'] as core.Map<core.String, core.dynamic>)
: null,
service: json_['service'] as core.String?,
);