GoogleCloudApigeeV1Access.fromJson constructor

GoogleCloudApigeeV1Access.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1Access.fromJson(core.Map json_)
    : this(
        Get: json_.containsKey('Get')
            ? GoogleCloudApigeeV1AccessGet.fromJson(
                json_['Get'] as core.Map<core.String, core.dynamic>)
            : null,
        Remove: json_.containsKey('Remove')
            ? GoogleCloudApigeeV1AccessRemove.fromJson(
                json_['Remove'] as core.Map<core.String, core.dynamic>)
            : null,
        Set: json_.containsKey('Set')
            ? GoogleCloudApigeeV1AccessSet.fromJson(
                json_['Set'] as core.Map<core.String, core.dynamic>)
            : null,
      );