Struct google_bigquery2::TableDataInsertAllRequestRows[][src]

pub struct TableDataInsertAllRequestRows {
    pub insert_id: Option<String>,
    pub json: Option<JsonObject>,
}

The rows to insert.

This type is not used in any activity, and only used as part of another schema.

Fields

[Optional] A unique ID for each row. BigQuery uses this property to detect duplicate insertion requests on a best-effort basis.

[Required] A JSON object that contains a row of data. The object's properties and values must match the destination table's schema.

Trait Implementations

impl Default for TableDataInsertAllRequestRows
[src]

Returns the "default value" for a type. Read more

impl Clone for TableDataInsertAllRequestRows
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TableDataInsertAllRequestRows
[src]

Formats the value using the given formatter. Read more

impl NestedType for TableDataInsertAllRequestRows
[src]

impl Part for TableDataInsertAllRequestRows
[src]

Auto Trait Implementations