github.com/twilio/twilio-go@v1.20.1/rest/insights/v1/model_insights_v1_event.go (about)

     1  /*
     2   * This code was generated by
     3   * ___ _ _ _ _ _    _ ____    ____ ____ _    ____ ____ _  _ ____ ____ ____ ___ __   __
     4   *  |  | | | | |    | |  | __ |  | |__| | __ | __ |___ |\ | |___ |__/ |__|  | |  | |__/
     5   *  |  |_|_| | |___ | |__|    |__| |  | |    |__] |___ | \| |___ |  \ |  |  | |__| |  \
     6   *
     7   * Twilio - Insights
     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  // InsightsV1Event struct for InsightsV1Event
    18  type InsightsV1Event struct {
    19  	// Event time.
    20  	Timestamp *string `json:"timestamp,omitempty"`
    21  	// The unique SID identifier of the Call.
    22  	CallSid *string `json:"call_sid,omitempty"`
    23  	// The unique SID identifier of the Account.
    24  	AccountSid *string `json:"account_sid,omitempty"`
    25  	Edge       *string `json:"edge,omitempty"`
    26  	// Event group.
    27  	Group *string `json:"group,omitempty"`
    28  	Level *string `json:"level,omitempty"`
    29  	// Event name.
    30  	Name *string `json:"name,omitempty"`
    31  	// Represents the connection between Twilio and our immediate carrier partners. The events here describe the call lifecycle as reported by Twilio's carrier media gateways.
    32  	CarrierEdge *interface{} `json:"carrier_edge,omitempty"`
    33  	// Represents the Twilio media gateway for SIP interface and SIP trunking calls. The events here describe the call lifecycle as reported by Twilio's public media gateways.
    34  	SipEdge *interface{} `json:"sip_edge,omitempty"`
    35  	// Represents the Voice SDK running locally in the browser or in the Android/iOS application. The events here are emitted by the Voice SDK in response to certain call progress events, network changes, or call quality conditions.
    36  	SdkEdge *interface{} `json:"sdk_edge,omitempty"`
    37  	// Represents the Twilio media gateway for Client calls. The events here describe the call lifecycle as reported by Twilio's Voice SDK media gateways.
    38  	ClientEdge *interface{} `json:"client_edge,omitempty"`
    39  }