github.com/twilio/twilio-go@v1.20.1/rest/conversations/v1/model_conversations_v1_configuration.go (about)

     1  /*
     2   * This code was generated by
     3   * ___ _ _ _ _ _    _ ____    ____ ____ _    ____ ____ _  _ ____ ____ ____ ___ __   __
     4   *  |  | | | | |    | |  | __ |  | |__| | __ | __ |___ |\ | |___ |__/ |__|  | |  | |__/
     5   *  |  |_|_| | |___ | |__|    |__| |  | |    |__] |___ | \| |___ |  \ |  |  | |__| |  \
     6   *
     7   * Twilio - Conversations
     8   * This is the public Twilio REST API.
     9   *
    10   * NOTE: This class is auto generated by OpenAPI Generator.
    11   * https://openapi-generator.tech
    12   * Do not edit the class manually.
    13   */
    14  
    15  package openapi
    16  
    17  // ConversationsV1Configuration struct for ConversationsV1Configuration
    18  type ConversationsV1Configuration struct {
    19  	// The SID of the [Account](https://www.twilio.com/docs/iam/api/account) responsible for this configuration.
    20  	AccountSid *string `json:"account_sid,omitempty"`
    21  	// The SID of the default [Conversation Service](https://www.twilio.com/docs/conversations/api/service-resource) used when creating a conversation.
    22  	DefaultChatServiceSid *string `json:"default_chat_service_sid,omitempty"`
    23  	// The SID of the default [Messaging Service](https://www.twilio.com/docs/messaging/api/service-resource) used when creating a conversation.
    24  	DefaultMessagingServiceSid *string `json:"default_messaging_service_sid,omitempty"`
    25  	// Default ISO8601 duration when conversation will be switched to `inactive` state. Minimum value for this timer is 1 minute.
    26  	DefaultInactiveTimer *string `json:"default_inactive_timer,omitempty"`
    27  	// Default ISO8601 duration when conversation will be switched to `closed` state. Minimum value for this timer is 10 minutes.
    28  	DefaultClosedTimer *string `json:"default_closed_timer,omitempty"`
    29  	// An absolute API resource URL for this global configuration.
    30  	Url *string `json:"url,omitempty"`
    31  	// Contains absolute API resource URLs to access the webhook and default service configurations.
    32  	Links *map[string]interface{} `json:"links,omitempty"`
    33  }