GoogleCloudDataplexV1RequestDataProductAccessRequest.fromJson constructor

GoogleCloudDataplexV1RequestDataProductAccessRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDataplexV1RequestDataProductAccessRequest.fromJson(core.Map json_)
  : this(
      changeRequest: json_.containsKey('changeRequest')
          ? GoogleCloudDataplexV1ChangeRequest.fromJson(
              json_['changeRequest'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      validateOnly: json_['validateOnly'] as core.bool?,
    );