GoogleCloudContentwarehouseV1DocumentSchema.fromJson constructor

GoogleCloudContentwarehouseV1DocumentSchema.fromJson(
  1. Map json_
)

Implementation

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