// Code generated by ogen, DO NOT EDIT.
package api
// CreateEventParams is parameters of createEvent operation.
type CreateEventParams struct {
CalendarId string
}
// DeleteEventParams is parameters of deleteEvent operation.
type DeleteEventParams struct {
CalendarId string
EventId string
}
// GetCalendarParams is parameters of getCalendar operation.
type GetCalendarParams struct {
CalendarId string
}
// GetEventParams is parameters of getEvent operation.
type GetEventParams struct {
CalendarId string
EventId string
}
// ListEventsParams is parameters of listEvents operation.
type ListEventsParams struct {
CalendarId string
TimeMin OptString `json:",omitempty,omitzero"`
TimeMax OptString `json:",omitempty,omitzero"`
MaxResults OptInt `json:",omitempty,omitzero"`
SingleEvents OptBool `json:",omitempty,omitzero"`
OrderBy OptString `json:",omitempty,omitzero"`
Q OptString `json:",omitempty,omitzero"`
}
// QuickAddParams is parameters of quickAdd operation.
type QuickAddParams struct {
CalendarId string
Text string
}
// UpdateEventParams is parameters of updateEvent operation.
type UpdateEventParams struct {
CalendarId string
EventId string
}