GoogleCloudApigeeV1ApiDocDocumentation.fromJson constructor
GoogleCloudApigeeV1ApiDocDocumentation.fromJson(
- Map json_
Implementation
GoogleCloudApigeeV1ApiDocDocumentation.fromJson(core.Map json_)
: this(
graphqlDocumentation:
json_.containsKey('graphqlDocumentation')
? GoogleCloudApigeeV1GraphqlDocumentation.fromJson(
json_['graphqlDocumentation']
as core.Map<core.String, core.dynamic>,
)
: null,
oasDocumentation:
json_.containsKey('oasDocumentation')
? GoogleCloudApigeeV1OASDocumentation.fromJson(
json_['oasDocumentation']
as core.Map<core.String, core.dynamic>,
)
: null,
);