GoogleCloudContentwarehouseV1DocumentSchema.fromJson constructor

GoogleCloudContentwarehouseV1DocumentSchema.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContentwarehouseV1DocumentSchema.fromJson(core.Map json_)
  : this(
      createTime: json_['createTime'] as core.String?,
      description: json_['description'] as core.String?,
      displayName: json_['displayName'] as core.String?,
      documentIsFolder: json_['documentIsFolder'] as core.bool?,
      name: json_['name'] as core.String?,
      propertyDefinitions:
          (json_['propertyDefinitions'] as core.List?)
              ?.map(
                (value) =>
                    GoogleCloudContentwarehouseV1PropertyDefinition.fromJson(
                      value as core.Map<core.String, core.dynamic>,
                    ),
              )
              .toList(),
      updateTime: json_['updateTime'] as core.String?,
    );