GoogleCloudApigeeV1ApiDocDocumentation.fromJson constructor

GoogleCloudApigeeV1ApiDocDocumentation.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1ApiDocDocumentation.fromJson(core.Map json_)
  : this(
      asyncApiDocumentation: json_.containsKey('asyncApiDocumentation')
          ? GoogleCloudApigeeV1AsyncApiDocumentation.fromJson(
              json_['asyncApiDocumentation']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
      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,
    );