UpdateTableColumnPropertiesRequest.fromJson constructor

UpdateTableColumnPropertiesRequest.fromJson(
  1. Map json_
)

Implementation

UpdateTableColumnPropertiesRequest.fromJson(core.Map json_)
  : this(
      columnIndices:
          (json_['columnIndices'] as core.List?)
              ?.map((value) => value as core.int)
              .toList(),
      fields: json_['fields'] as core.String?,
      tableColumnProperties:
          json_.containsKey('tableColumnProperties')
              ? TableColumnProperties.fromJson(
                json_['tableColumnProperties']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
      tableStartLocation:
          json_.containsKey('tableStartLocation')
              ? Location.fromJson(
                json_['tableStartLocation']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );