View Source GoogleApi.Datastream.V1.Model.MysqlColumn (google_api_datastream v0.4.0)

MySQL Column.

Attributes

  • collation (type: String.t, default: nil) - Column collation.
  • column (type: String.t, default: nil) - Column name.
  • dataType (type: String.t, default: nil) - The MySQL data type. Full data types list can be found here: https://dev.mysql.com/doc/refman/8.0/en/data-types.html
  • length (type: integer(), default: nil) - Column length.
  • nullable (type: boolean(), default: nil) - Whether or not the column can accept a null value.
  • ordinalPosition (type: integer(), default: nil) - The ordinal position of the column in the table.
  • precision (type: integer(), default: nil) - Column precision.
  • primaryKey (type: boolean(), default: nil) - Whether or not the column represents a primary key.
  • scale (type: integer(), default: nil) - Column scale.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

@type t() :: %GoogleApi.Datastream.V1.Model.MysqlColumn{
  collation: String.t() | nil,
  column: String.t() | nil,
  dataType: String.t() | nil,
  length: integer() | nil,
  nullable: boolean() | nil,
  ordinalPosition: integer() | nil,
  precision: integer() | nil,
  primaryKey: boolean() | nil,
  scale: integer() | nil
}

Functions

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.