GoogleCloudApigeeV1Reference.fromJson constructor

GoogleCloudApigeeV1Reference.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1Reference.fromJson(core.Map json_)
    : this(
        description: json_.containsKey('description')
            ? json_['description'] as core.String
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
        refers: json_.containsKey('refers')
            ? json_['refers'] as core.String
            : null,
        resourceType: json_.containsKey('resourceType')
            ? json_['resourceType'] as core.String
            : null,
      );