Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Meeting ¶
type Meeting struct {
// ID of Meeting
// Required: true
ID *int64 `json:"id"`
// Name of Meeting
// Required: true
Name *string `json:"name"`
// Start time of meeting
// Required: true
Start *string `json:"start"`
}
Meeting meeting
swagger:model meeting
func (*Meeting) MarshalBinary ¶
MarshalBinary interface implementation
func (*Meeting) UnmarshalBinary ¶
UnmarshalBinary interface implementation
type Recording ¶
type Recording struct {
// ID of Recording
// Required: true
ID *string `json:"id"`
// Id of Meeting that is Recorded
// Required: true
MeetingID *string `json:"meeting_id"`
}
Recording recording
swagger:model recording
func (*Recording) MarshalBinary ¶
MarshalBinary interface implementation
func (*Recording) UnmarshalBinary ¶
UnmarshalBinary interface implementation
Click to show internal directories.
Click to hide internal directories.