GoogleCloudDataplexV1CreateEntryRequest.fromJson constructor

GoogleCloudDataplexV1CreateEntryRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDataplexV1CreateEntryRequest.fromJson(core.Map json_)
  : this(
      entry: json_.containsKey('entry')
          ? GoogleCloudDataplexV1Entry.fromJson(
              json_['entry'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      entryId: json_['entryId'] as core.String?,
      parent: json_['parent'] as core.String?,
    );