github.com/twilio/twilio-go@v1.20.1/rest/insights/v1/model_insights_v1_metric.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  // InsightsV1Metric struct for InsightsV1Metric
    18  type InsightsV1Metric struct {
    19  	// Timestamp of metric sample. Samples are taken every 10 seconds and contain the metrics for the previous 10 seconds.
    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  	Direction  *string `json:"direction,omitempty"`
    27  	// Contains metrics and properties for the Twilio media gateway of a PSTN call.
    28  	CarrierEdge *interface{} `json:"carrier_edge,omitempty"`
    29  	// Contains metrics and properties for the Twilio media gateway of a SIP Interface or Trunking call.
    30  	SipEdge *interface{} `json:"sip_edge,omitempty"`
    31  	// Contains metrics and properties for the SDK sensor library for Client calls.
    32  	SdkEdge *interface{} `json:"sdk_edge,omitempty"`
    33  	// Contains metrics and properties for the Twilio media gateway of a Client call.
    34  	ClientEdge *interface{} `json:"client_edge,omitempty"`
    35  }