github.com/muxinc/mux-go@v1.1.1/model_error.go (about)

     1  // Mux Go - Copyright 2019 Mux Inc.
     2  // NOTE: This file is auto generated. Do not edit this file manually.
     3  
     4  package muxgo
     5  
     6  type Error struct {
     7  	// A unique identifier for this error.
     8  	Id int64 `json:"id,omitempty"`
     9  	// The percentage of views that experienced this error.
    10  	Percentage float64 `json:"percentage,omitempty"`
    11  	// Notes that are attached to this error.
    12  	Notes string `json:"notes,omitempty"`
    13  	// The error message.
    14  	Message string `json:"message,omitempty"`
    15  	// The last time this error was seen (ISO 8601 timestamp).
    16  	LastSeen string `json:"last_seen,omitempty"`
    17  	// Description of the error.
    18  	Description string `json:"description,omitempty"`
    19  	// The total number of views that experiend this error.
    20  	Count int64 `json:"count,omitempty"`
    21  	// The error code
    22  	Code int64 `json:"code,omitempty"`
    23  }