Class Argument
Input/output argument of a function or a stored procedure.
Inheritance
object
Argument
Implements
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class Argument : IDirectResponseSchema
Properties
ArgumentKind
Optional. Defaults to FIXED_TYPE.
Declaration
[JsonProperty("argumentKind")]
public virtual string ArgumentKind { get; set; }
Property Value
Type | Description |
---|---|
string |
DataType
Required unless argument_kind = ANY_TYPE.
Declaration
[JsonProperty("dataType")]
public virtual StandardSqlDataType DataType { get; set; }
Property Value
Type | Description |
---|---|
StandardSqlDataType |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Mode
Optional. Specifies whether the argument is input or output. Can be set for procedures only.
Declaration
[JsonProperty("mode")]
public virtual string Mode { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
Optional. The name of this argument. Can be absent for function return argument.
Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type | Description |
---|---|
string |