github.com/yaegashi/msgraph.go@v0.1.4/v1.0/ModelAudio.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // Audio undocumented
     6  type Audio struct {
     7  	// Object is the base model of Audio
     8  	Object
     9  	// Album undocumented
    10  	Album *string `json:"album,omitempty"`
    11  	// AlbumArtist undocumented
    12  	AlbumArtist *string `json:"albumArtist,omitempty"`
    13  	// Artist undocumented
    14  	Artist *string `json:"artist,omitempty"`
    15  	// Bitrate undocumented
    16  	Bitrate *int `json:"bitrate,omitempty"`
    17  	// Composers undocumented
    18  	Composers *string `json:"composers,omitempty"`
    19  	// Copyright undocumented
    20  	Copyright *string `json:"copyright,omitempty"`
    21  	// Disc undocumented
    22  	Disc *int `json:"disc,omitempty"`
    23  	// DiscCount undocumented
    24  	DiscCount *int `json:"discCount,omitempty"`
    25  	// Duration undocumented
    26  	Duration *int `json:"duration,omitempty"`
    27  	// Genre undocumented
    28  	Genre *string `json:"genre,omitempty"`
    29  	// HasDrm undocumented
    30  	HasDrm *bool `json:"hasDrm,omitempty"`
    31  	// IsVariableBitrate undocumented
    32  	IsVariableBitrate *bool `json:"isVariableBitrate,omitempty"`
    33  	// Title undocumented
    34  	Title *string `json:"title,omitempty"`
    35  	// Track undocumented
    36  	Track *int `json:"track,omitempty"`
    37  	// TrackCount undocumented
    38  	TrackCount *int `json:"trackCount,omitempty"`
    39  	// Year undocumented
    40  	Year *int `json:"year,omitempty"`
    41  }
    42  
    43  // AudioConferencing undocumented
    44  type AudioConferencing struct {
    45  	// Object is the base model of AudioConferencing
    46  	Object
    47  	// ConferenceID undocumented
    48  	ConferenceID *string `json:"conferenceId,omitempty"`
    49  	// TollNumber undocumented
    50  	TollNumber *string `json:"tollNumber,omitempty"`
    51  	// TollFreeNumber undocumented
    52  	TollFreeNumber *string `json:"tollFreeNumber,omitempty"`
    53  	// DialinURL undocumented
    54  	DialinURL *string `json:"dialinUrl,omitempty"`
    55  }