GoogleCloudApigeeV1EndpointAttachment.fromJson constructor

GoogleCloudApigeeV1EndpointAttachment.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1EndpointAttachment.fromJson(core.Map json_)
    : this(
        connectionState: json_.containsKey('connectionState')
            ? json_['connectionState'] as core.String
            : null,
        host: json_.containsKey('host') ? json_['host'] as core.String : null,
        location: json_.containsKey('location')
            ? json_['location'] as core.String
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
        serviceAttachment: json_.containsKey('serviceAttachment')
            ? json_['serviceAttachment'] as core.String
            : null,
        state:
            json_.containsKey('state') ? json_['state'] as core.String : null,
      );