GoogleCloudContentwarehouseV1UpdateOptions.fromJson constructor

GoogleCloudContentwarehouseV1UpdateOptions.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContentwarehouseV1UpdateOptions.fromJson(core.Map json_)
  : this(
      mergeFieldsOptions:
          json_.containsKey('mergeFieldsOptions')
              ? GoogleCloudContentwarehouseV1MergeFieldsOptions.fromJson(
                json_['mergeFieldsOptions']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
      updateMask: json_['updateMask'] as core.String?,
      updateType: json_['updateType'] as core.String?,
    );