GoogleCloudApigeeV1GraphQLOperationGroup.fromJson constructor

GoogleCloudApigeeV1GraphQLOperationGroup.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1GraphQLOperationGroup.fromJson(core.Map json_)
    : this(
        operationConfigType: json_.containsKey('operationConfigType')
            ? json_['operationConfigType'] as core.String
            : null,
        operationConfigs: json_.containsKey('operationConfigs')
            ? (json_['operationConfigs'] as core.List)
                .map((value) =>
                    GoogleCloudApigeeV1GraphQLOperationConfig.fromJson(
                        value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );