github.com/twilio/twilio-go@v1.20.1/rest/conversations/v1/model_conversations_v1_service_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  // ConversationsV1ServiceConfiguration struct for ConversationsV1ServiceConfiguration
    18  type ConversationsV1ServiceConfiguration struct {
    19  	// The unique string that we created to identify the Service configuration resource.
    20  	ChatServiceSid *string `json:"chat_service_sid,omitempty"`
    21  	// The conversation-level role assigned to a conversation creator when they join a new conversation. See [Conversation Role](https://www.twilio.com/docs/conversations/api/role-resource) for more info about roles.
    22  	DefaultConversationCreatorRoleSid *string `json:"default_conversation_creator_role_sid,omitempty"`
    23  	// The conversation-level role assigned to users when they are added to a conversation. See [Conversation Role](https://www.twilio.com/docs/conversations/api/role-resource) for more info about roles.
    24  	DefaultConversationRoleSid *string `json:"default_conversation_role_sid,omitempty"`
    25  	// The service-level role assigned to users when they are added to the service. See [Conversation Role](https://www.twilio.com/docs/conversations/api/role-resource) for more info about roles.
    26  	DefaultChatServiceRoleSid *string `json:"default_chat_service_role_sid,omitempty"`
    27  	// An absolute API resource URL for this service configuration.
    28  	Url *string `json:"url,omitempty"`
    29  	// Contains an absolute API resource URL to access the push notifications configuration of this service.
    30  	Links *map[string]interface{} `json:"links,omitempty"`
    31  	// Whether the [Reachability Indicator](https://www.twilio.com/docs/conversations/reachability) is enabled for this Conversations Service. The default is `false`.
    32  	ReachabilityEnabled *bool `json:"reachability_enabled,omitempty"`
    33  }