github.com/twilio/twilio-go@v1.20.1/rest/insights/v1/model_insights_v1_annotation.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  // InsightsV1Annotation struct for InsightsV1Annotation
    18  type InsightsV1Annotation struct {
    19  	// The unique SID identifier of the Call.
    20  	CallSid *string `json:"call_sid,omitempty"`
    21  	// The unique SID identifier of the Account.
    22  	AccountSid        *string `json:"account_sid,omitempty"`
    23  	AnsweredBy        *string `json:"answered_by,omitempty"`
    24  	ConnectivityIssue *string `json:"connectivity_issue,omitempty"`
    25  	// Specifies if the call had any subjective quality issues. Possible values are one or more of `no_quality_issue`, `low_volume`, `choppy_robotic`, `echo`, `dtmf`, `latency`, `owa`, or `static_noise`.
    26  	QualityIssues *[]string `json:"quality_issues,omitempty"`
    27  	// Specifies if the call was a spam call. Use this to provide feedback on whether calls placed from your account were marked as spam, or if inbound calls received by your account were unwanted spam. Is of type Boolean: true, false. Use true if the call was a spam call.
    28  	Spam *bool `json:"spam,omitempty"`
    29  	// Specifies the Call Score, if available. This is of type integer. Use a range of 1-5 to indicate the call experience score, with the following mapping as a reference for rating the call [5: Excellent, 4: Good, 3 : Fair, 2 : Poor, 1: Bad].
    30  	CallScore *int `json:"call_score,omitempty"`
    31  	// Specifies any comments pertaining to the call. Twilio does not treat this field as PII, so no PII should be included in comments.
    32  	Comment *string `json:"comment,omitempty"`
    33  	// Incident or support ticket associated with this call. The `incident` property is of type string with a maximum character limit of 100. Twilio does not treat this field as PII, so no PII should be included in `incident`.
    34  	Incident *string `json:"incident,omitempty"`
    35  	Url      *string `json:"url,omitempty"`
    36  }