Show / Hide Table of Contents

Class SlashCommandMetadata

Annotation metadata for slash commands (/).

Inheritance
System.Object
SlashCommandMetadata
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.CloudSearch.v1.Data
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class SlashCommandMetadata : IDirectResponseSchema

Properties

ArgumentsHint

Hint string for the arguments expected by the slash command.

Declaration
[JsonProperty("argumentsHint")]
public virtual string ArgumentsHint { get; set; }
Property Value
Type Description
System.String

CommandId

Unique id for the slash command.

Declaration
[JsonProperty("commandId")]
public virtual long? CommandId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

CommandName

Name of the slash command.

Declaration
[JsonProperty("commandName")]
public virtual string CommandName { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Id

ID of the bot which owns the slash command.

Declaration
[JsonProperty("id")]
public virtual UserId Id { get; set; }
Property Value
Type Description
UserId

TriggersDialog

Whether or not this slash command should trigger a dialog.

Declaration
[JsonProperty("triggersDialog")]
public virtual bool? TriggersDialog { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Type

Declaration
[JsonProperty("type")]
public virtual string Type { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top