github.com/twilio/twilio-go@v1.20.1/rest/flex/v1/model_flex_v1_interaction_channel.go (about)

     1  /*
     2   * This code was generated by
     3   * ___ _ _ _ _ _    _ ____    ____ ____ _    ____ ____ _  _ ____ ____ ____ ___ __   __
     4   *  |  | | | | |    | |  | __ |  | |__| | __ | __ |___ |\ | |___ |__/ |__|  | |  | |__/
     5   *  |  |_|_| | |___ | |__|    |__| |  | |    |__] |___ | \| |___ |  \ |  |  | |__| |  \
     6   *
     7   * Twilio - Flex
     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  // FlexV1InteractionChannel struct for FlexV1InteractionChannel
    18  type FlexV1InteractionChannel struct {
    19  	// The unique string created by Twilio to identify an Interaction Channel resource, prefixed with UO.
    20  	Sid *string `json:"sid,omitempty"`
    21  	// The unique string created by Twilio to identify an Interaction resource, prefixed with KD.
    22  	InteractionSid *string `json:"interaction_sid,omitempty"`
    23  	Type           *string `json:"type,omitempty"`
    24  	Status         *string `json:"status,omitempty"`
    25  	// The Twilio error code for a failed channel.
    26  	ErrorCode *int `json:"error_code,omitempty"`
    27  	// The error message for a failed channel.
    28  	ErrorMessage *string                 `json:"error_message,omitempty"`
    29  	Url          *string                 `json:"url,omitempty"`
    30  	Links        *map[string]interface{} `json:"links,omitempty"`
    31  }