zoom

package
v0.0.0-...-fcb0005 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 29, 2024 License: MIT Imports: 13 Imported by: 0

Documentation

Index

Constants

View Source
const (
	MeetingsAutoRecordingCloud MeetingsAutoRecording = "cloud"
	MeetingsAutoRecordingLocal MeetingsAutoRecording = "local"
	MeetingsAutoRecordingNone  MeetingsAutoRecording = "none"

	MeetingsDeleteRecordingsActionDelete MeetingsDeleteRecordingsAction = "delete"
	MeetingsDeleteRecordingsActionTrash  MeetingsDeleteRecordingsAction = "trash"

	MeetingsJoinBeforeHost10Minutes MeetingsJoinBeforeHostTime = 10
	MeetingsJoinBeforeHost5Minutes  MeetingsJoinBeforeHostTime = 5
	MeetingsJoinBeforeHostAnytime   MeetingsJoinBeforeHostTime = 0

	MeetingsTypeInstant        MeetingsType = 1
	MeetingsTypeRecurring      MeetingsType = 3
	MeetingsTypeRecurringFixed MeetingsType = 8
	MeetingsTypeScheduled      MeetingsType = 2

	MeetingsUpdateStatusActionEnd MeetingsUpdateStatusAction = "end"
)
View Source
const (
	UsersActionAutoCreate UsersCreateAction = "autoCreate"
	UsersActionCreate     UsersCreateAction = "create"
	UsersActionCustCreate UsersCreateAction = "custCreate"
	UsersActionSSOCreate  UsersCreateAction = "ssoCreate"

	UsersRecordingFileTypeCC         UsersRecordingFileType = "CC"
	UsersRecordingFileTypeChat       UsersRecordingFileType = "CHAT"
	UsersRecordingFileTypeCSV        UsersRecordingFileType = "CSV"
	UsersRecordingFileTypeM4A        UsersRecordingFileType = "M4A"
	UsersRecordingFileTypeMP4        UsersRecordingFileType = "MP4"
	UsersRecordingFileTypeSummary    UsersRecordingFileType = "SUMMARY"
	UsersRecordingFileTypeTimeline   UsersRecordingFileType = "TIMELINE"
	UsersRecordingFileTypeTranscript UsersRecordingFileType = "TRANSCRIPT"

	UsersRecordingStatusCompleted  UsersRecordingStatus = "completed"
	UsersRecordingStatusProcessing UsersRecordingStatus = "processing"
)

Variables

This section is empty.

Functions

func MeetingSDKJWT

func MeetingSDKJWT(meetingSDKKey, meetingSDKSecret string, meetingNumber int64, role int, expiration time.Duration) (string, error)

MeetingSDKJWT creates a Meeting SDK JWT, signs it, and returns the signed string (see https://marketplace.zoom.us/docs/sdk/native-sdks/auth/#meeting-sdk-auth). role is required for web, optional for native. 0 to specify participant or 1 to specify host. expiration is the duration or expiration of JWT from now. Minimum duration is 1800 seconds, maximum duration is 48 hours. Default duration is 24 hours.

func Ptr

func Ptr[T any](val T) *T

Types

type AccessTokenService

type AccessTokenService struct {
	// contains filtered or unexported fields
}

func (*AccessTokenService) Get

type AccessTokenServicer

type AccessTokenServicer interface {
	Get(ctx context.Context) (string, error)
}

type Client

type Client struct {
	AccessToken *AccessTokenService
	Users       *UsersService
	Meetings    *MeetingsService
	// contains filtered or unexported fields
}

func NewClient

func NewClient(httpClient *http.Client, accountID, clientID, clientSecret string, tokenMutex TokenMutex) *Client

NewClient assumes the usage of Server-to-Server OAuth app (https://marketplace.zoom.us/docs/guides/build/server-to-server-oauth-app/)

type EmptyTime

type EmptyTime struct {
	Time *time.Time
}

func (*EmptyTime) UnmarshalJSON

func (ct *EmptyTime) UnmarshalJSON(data []byte) error

type ErrorResponse

type ErrorResponse struct {
	Code    int    `json:"code"`
	Message string `json:"message"`
	Errors  []FieldError
}

func (*ErrorResponse) Error

func (e *ErrorResponse) Error() string

type FieldError

type FieldError struct {
	Field   string `json:"field"`
	Message string `json:"message"`
}

type MeetingCreateResponseSettings

type MeetingCreateResponseSettings struct {
	AllowMultipleDevices               bool                                                              `json:"allow_multiple_devices,omitempty"`
	AlternativeHosts                   string                                                            `json:"alternative_hosts,omitempty"`
	AlternativeHostsEmailNotification  bool                                                              `json:"alternative_hosts_email_notification,omitempty"`
	AlternativeHostUpdatePolls         bool                                                              `json:"alternative_host_update_polls,omitempty"`
	ApprovalType                       int                                                               `json:"approval_type,omitempty"`
	ApprovedOrDeniedCountriesOrRegions *MeetingsCreateResponseSettingsApprovedOrDeniedCountriesOrRegions `json:"approved_or_denied_countries_or_regions,omitempty"`
	Audio                              string                                                            `json:"audio,omitempty"`
	AuthenticationDomains              string                                                            `json:"authentication_domains,omitempty"`
	AuthenticationException            []*MeetingsCreateResponseSettingsAuthenticationException          `json:"authentication_exception,omitempty"`
	AuthenticationName                 string                                                            `json:"authentication_name,omitempty"`
	AuthenticationOption               string                                                            `json:"authentication_option,omitempty"`
	AutoRecording                      string                                                            `json:"auto_recording,omitempty"`
	BreakoutRoom                       *MeetingsCreateResponseSettingsBreakoutRoom                       `json:"breakout_room,omitempty"`
	CalendarType                       int                                                               `json:"calendar_type,omitempty"`
	CloseRegistration                  bool                                                              `json:"close_registration,omitempty"`
	ContactEmail                       string                                                            `json:"contact_email,omitempty"`
	ContactName                        string                                                            `json:"contact_name,omitempty"`
	CustomKeys                         []*MeetingsCreateResponseSettingsCustomKey                        `json:"custom_keys,omitempty"`
	EmailNotification                  bool                                                              `json:"email_notification,omitempty"`
	EncryptionType                     string                                                            `json:"encryption_type,omitempty"`
	FocusMode                          bool                                                              `json:"focus_mode,omitempty"`
	GlobalDialInCountries              []string                                                          `json:"global_dial_in_countries,omitempty"`
	GlobalDialInNumbers                []*MeetingsCreateResponseSettingsGlobalDialInNumber               `json:"global_dial_in_numbers,omitempty"`
	HostSaveVideoOrder                 bool                                                              `json:"host_save_video_order,omitempty"`
	HostVideo                          bool                                                              `json:"host_video,omitempty"`
	JbhTime                            int                                                               `json:"jbh_time,omitempty"`
	JoinBeforeHost                     bool                                                              `json:"join_before_host,omitempty"`
	LanguageInterpretation             *MeetingsCreateResponseSettingsLanguageInterpretation             `json:"language_interpretation,omitempty"`
	MeetingAuthentication              bool                                                              `json:"meeting_authentication,omitempty"`
	MuteUponEntry                      bool                                                              `json:"mute_upon_entry,omitempty"`
	ParticipantVideo                   bool                                                              `json:"participant_video,omitempty"`
	PrivateMeeting                     bool                                                              `json:"private_meeting,omitempty"`
	RegistrantsConfirmationEmail       bool                                                              `json:"registrants_confirmation_email,omitempty"`
	RegistrantsEmailNotification       bool                                                              `json:"registrants_email_notification,omitempty"`
	RegistrationType                   int                                                               `json:"registration_type,omitempty"`
	ShowShareButton                    bool                                                              `json:"show_share_button,omitempty"`
	UsePmi                             bool                                                              `json:"use_pmi,omitempty"`
	WaitingRoom                        bool                                                              `json:"waiting_room,omitempty"`
	Watermark                          bool                                                              `json:"watermark,omitempty"`
}

type MeetingsAutoRecording

type MeetingsAutoRecording string

type MeetingsCreateOptions

type MeetingsCreateOptions struct {
	DefaultPassword *bool                           `json:"default_password,omitempty"`
	Duration        *int                            `json:"duration,omitempty"`
	Settings        *MeetingsCreateOptionsSettings  `json:"settings,omitempty"`
	StartTime       *MeetingsCreateOptionsStartTime `json:"start_time,omitempty"`
	Type            *int                            `json:"type,omitempty"`
}

type MeetingsCreateOptionsSettings

type MeetingsCreateOptionsSettings struct {
	AlternativeHosts *string                `json:"alternative_hosts,omitempty"`
	AutoRecording    *MeetingsAutoRecording `json:"auto_recording,omitempty"`
	JBHTime          *int                   `json:"jbh_time,omitempty"`
	JoinBeforeHost   *bool                  `json:"join_before_host,omitempty"`
}

type MeetingsCreateOptionsStartTime

type MeetingsCreateOptionsStartTime time.Time

func (MeetingsCreateOptionsStartTime) MarshalJSON

func (m MeetingsCreateOptionsStartTime) MarshalJSON() ([]byte, error)

type MeetingsCreateResponse

type MeetingsCreateResponse struct {
	Agenda          string                                 `json:"agenda"`
	AssistantID     string                                 `json:"assistant_id"`
	CreatedAt       time.Time                              `json:"created_at"`
	Duration        int                                    `json:"duration"`
	H323Password    string                                 `json:"h323_password"`
	HostEmail       string                                 `json:"host_email"`
	ID              int64                                  `json:"id"`
	JoinURL         string                                 `json:"join_url"`
	Occurrences     *MeetingsCreateResponseOccurances      `json:"occurrences"`
	Password        string                                 `json:"password"`
	Pmi             string                                 `json:"pmi"`
	PreSchedule     bool                                   `json:"pre_schedule"`
	Recurrence      *MeetingsCreateResponseRecurrance      `json:"recurrence"`
	RegistrationURL string                                 `json:"registration_url"`
	Settings        *MeetingCreateResponseSettings         `json:"settings"`
	StartTime       time.Time                              `json:"start_time"`
	StartURL        string                                 `json:"start_url"`
	Timezone        string                                 `json:"timezone"`
	Topic           string                                 `json:"topic"`
	TrackingFields  []*MeetingsCreateResponseTrackingField `json:"tracking_fields"`
	Type            int                                    `json:"type"`
}

type MeetingsCreateResponseOccurances

type MeetingsCreateResponseOccurances struct {
	Duration     int       `json:"duration,omitempty"`
	OccurrenceID string    `json:"occurrence_id,omitempty"`
	StartTime    time.Time `json:"start_time,omitempty"`
	Status       string    `json:"status,omitempty"`
}

type MeetingsCreateResponseRecurrance

type MeetingsCreateResponseRecurrance struct {
	EndDateTime    time.Time `json:"end_date_time,omitempty"`
	EndTimes       int       `json:"end_times,omitempty"`
	MonthlyDay     int       `json:"monthly_day,omitempty"`
	MonthlyWeek    int       `json:"monthly_week,omitempty"`
	MonthlyWeekDay int       `json:"monthly_week_day,omitempty"`
	RepeatInterval int       `json:"repeat_interval,omitempty"`
	Type           int       `json:"type"`
	WeeklyDays     string    `json:"weekly_days,omitempty"`
}

type MeetingsCreateResponseSettingsApprovedOrDeniedCountriesOrRegions

type MeetingsCreateResponseSettingsApprovedOrDeniedCountriesOrRegions struct {
	ApprovedList []string `json:"approved_list,omitempty"`
	DeniedList   []string `json:"denied_list,omitempty"`
	Enable       bool     `json:"enable,omitempty"`
	Method       string   `json:"method,omitempty"`
}

type MeetingsCreateResponseSettingsAuthenticationException

type MeetingsCreateResponseSettingsAuthenticationException struct {
	Email   string `json:"email,omitempty"`
	JoinURL string `json:"join_url,omitempty"`
	Name    string `json:"name,omitempty"`
}

type MeetingsCreateResponseSettingsBreakoutRoom

type MeetingsCreateResponseSettingsBreakoutRoom struct {
	Enable bool                                              `json:"enable,omitempty"`
	Rooms  []*MeetingsCreateResponseSettingsBreakoutRoomRoom `json:"rooms,omitempty"`
}

type MeetingsCreateResponseSettingsBreakoutRoomRoom

type MeetingsCreateResponseSettingsBreakoutRoomRoom struct {
	Name         string   `json:"name,omitempty"`
	Participants []string `json:"participants,omitempty"`
}

type MeetingsCreateResponseSettingsCustomKey

type MeetingsCreateResponseSettingsCustomKey struct {
	Key   string `json:"key,omitempty"`
	Value string `json:"value,omitempty"`
}

type MeetingsCreateResponseSettingsGlobalDialInNumber

type MeetingsCreateResponseSettingsGlobalDialInNumber struct {
	City        string `json:"city,omitempty"`
	Country     string `json:"country,omitempty"`
	CountryName string `json:"country_name,omitempty"`
	Number      string `json:"number,omitempty"`
	Type        string `json:"type,omitempty"`
}

type MeetingsCreateResponseSettingsLanguageInterpretation

type MeetingsCreateResponseSettingsLanguageInterpretation struct {
	Enable       bool                                                               `json:"enable,omitempty"`
	Interpreters []*MeetingsCreateResponseSettingsLanguageInterpretationInterpreter `json:"interpreters,omitempty"`
}

type MeetingsCreateResponseSettingsLanguageInterpretationInterpreter

type MeetingsCreateResponseSettingsLanguageInterpretationInterpreter struct {
	Email     string `json:"email,omitempty"`
	Languages string `json:"languages,omitempty"`
}

type MeetingsCreateResponseTrackingField

type MeetingsCreateResponseTrackingField struct {
	Field   string `json:"field"`
	Value   string `json:"value,omitempty"`
	Visible bool   `json:"visible,omitempty"`
}

type MeetingsDeleteOptions

type MeetingsDeleteOptions struct {
	OccurrenceID          *string `url:"occurrence_id,omitempty"`
	ScheduleForReminder   *bool   `url:"schedule_for_reminder,omitempty"`
	CancelMeetingReminder *bool   `url:"cancel_meeting_reminder,omitempty"`
}

type MeetingsDeleteRecordingsAction

type MeetingsDeleteRecordingsAction string

type MeetingsDeleteRecordingsOptions

type MeetingsDeleteRecordingsOptions struct {
	Action *MeetingsDeleteRecordingsAction `json:"action,omitempty"`
}

type MeetingsGetOptions

type MeetingsGetOptions struct {
}

type MeetingsGetResponse

type MeetingsGetResponse struct {
	Agenda    string               `json:"agenda"`
	CreatedAt time.Time            `json:"created_at"`
	Duration  int                  `json:"duration"`
	HostID    string               `json:"host_id"`
	ID        int64                `json:"id"`
	JoinURL   string               `json:"join_url"`
	Pmi       string               `json:"pmi"`
	Settings  *MeetingsGetSettings `json:"settings"`
	StartTime time.Time            `json:"start_time"`
	Timezone  string               `json:"timezone"`
	Topic     string               `json:"topic"`
	Type      int                  `json:"type"`
	UUID      string               `json:"uuid"`
}

type MeetingsGetSettings

type MeetingsGetSettings struct {
	AlternativeHosts string                `json:"alternative_hosts,omitempty"`
	AutoRecording    MeetingsAutoRecording `json:"auto_recording,omitempty"`
	JBHTime          int                   `json:"jbh_time,omitempty"`
	JoinBeforeHost   bool                  `json:"join_before_host,omitempty"`
}

type MeetingsJoinBeforeHostTime

type MeetingsJoinBeforeHostTime int

MeetingsJoinBeforeHostTime indicates the time limit when a participant can join a meeting before the meeting's host if join_before_host is true. Values are in minutes except 0 which represents anytime.

func (MeetingsJoinBeforeHostTime) Int

type MeetingsListItem

type MeetingsListItem struct {
	Agenda    string    `json:"agenda"`
	CreatedAt time.Time `json:"created_at"`
	Duration  int       `json:"duration"`
	HostID    string    `json:"host_id"`
	ID        int64     `json:"id"`
	JoinURL   string    `json:"join_url"`
	Pmi       string    `json:"pmi"`
	StartTime time.Time `json:"start_time"`
	Timezone  string    `json:"timezone"`
	Topic     string    `json:"topic"`
	Type      int       `json:"type"`
	UUID      string    `json:"uuid"`
}

type MeetingsListOptions

type MeetingsListOptions struct {
	*PaginationOptions `url:",omitempty"`

	Type *string `url:"type,omitempty"`
}

type MeetingsListResponse

type MeetingsListResponse struct {
	*PaginationResponse

	Meetings []*MeetingsListItem `json:"meetings"`
}

type MeetingsService

type MeetingsService struct {
	// contains filtered or unexported fields
}

func (*MeetingsService) Create

func (*MeetingsService) Delete

func (m *MeetingsService) Delete(ctx context.Context, meetingID int64, opts *MeetingsDeleteOptions) (*http.Response, error)

func (*MeetingsService) DeleteRecordings

func (m *MeetingsService) DeleteRecordings(ctx context.Context, meetingID int64, opts *MeetingsDeleteRecordingsOptions) (*http.Response, error)

func (*MeetingsService) Get

func (*MeetingsService) List

func (*MeetingsService) Update

func (m *MeetingsService) Update(ctx context.Context, meetingID int64, opts *MeetingsUpdateOptions) (*http.Response, error)

func (*MeetingsService) UpdateStatus

func (m *MeetingsService) UpdateStatus(ctx context.Context, meetingID int64, opts *MeetingsUpdateStatusOptions) (*http.Response, error)

type MeetingsServicer

type MeetingsServicer interface {
	Create(ctx context.Context, userID string, opts *MeetingsCreateOptions) (*MeetingsCreateResponse, *http.Response, error)
	Delete(ctx context.Context, meetingID int64, opts *MeetingsDeleteOptions) (*http.Response, error)
	DeleteRecordings(ctx context.Context, meetingID int64, opts *MeetingsDeleteRecordingsOptions) (*http.Response, error)
	Get(ctx context.Context, meetingID int64, opts *MeetingsGetOptions) (*MeetingsGetResponse, *http.Response, error)
	List(ctx context.Context, userID string, opts *MeetingsListOptions) (*MeetingsListResponse, *http.Response, error)
	Update(ctx context.Context, meetingID int64, opts *MeetingsUpdateOptions) (*http.Response, error)
	UpdateStatus(ctx context.Context, meetingID int64, opts *MeetingsUpdateStatusOptions) (*http.Response, error)
}

type MeetingsType

type MeetingsType int

func (MeetingsType) Int

func (m MeetingsType) Int() int

type MeetingsUpdateOptions

type MeetingsUpdateOptions struct {
	Duration  *int                            `json:"duration,omitempty"`
	Settings  *MeetingsUpdateOptionsSettings  `json:"settings,omitempty"`
	StartTime *MeetingsUpdateOptionsStartTime `json:"start_time,omitempty"`
	Type      *int                            `json:"type,omitempty"`
}

type MeetingsUpdateOptionsSettings

type MeetingsUpdateOptionsSettings struct {
	AlternativeHosts *string                `json:"alternative_hosts,omitempty"`
	AutoRecording    *MeetingsAutoRecording `json:"auto_recording,omitempty"`
	JBHTime          *int                   `json:"jbh_time,omitempty"`
	JoinBeforeHost   *bool                  `json:"join_before_host,omitempty"`
}

type MeetingsUpdateOptionsStartTime

type MeetingsUpdateOptionsStartTime time.Time

func (MeetingsUpdateOptionsStartTime) MarshalJSON

func (m MeetingsUpdateOptionsStartTime) MarshalJSON() ([]byte, error)

type MeetingsUpdateStatusAction

type MeetingsUpdateStatusAction string

type MeetingsUpdateStatusOptions

type MeetingsUpdateStatusOptions struct {
	Action MeetingsUpdateStatusAction `json:"action,omitempty"`
}

type PaginationOptions

type PaginationOptions struct {
	NextPageToken *string `url:"next_page_token,omitempty"`
	PageSize      *int    `url:"page_size,omitempty"`
}

type PaginationResponse

type PaginationResponse struct {
	NextPageToken string `json:"next_page_token"`
	PageCount     int    `json:"page_count"`
	PageSize      int    `json:"page_size"`
	TotalRecords  int    `json:"total_records"`
}

type TokenMutex

type TokenMutex interface {
	Lock(context.Context, func() error) error
	Get(context.Context) (string, error)
	Set(context.Context, string, time.Time) error
	Clear(context.Context) error
}

type UsersCreateAction

type UsersCreateAction string

func (UsersCreateAction) String

func (u UsersCreateAction) String() string

type UsersCreateOptions

type UsersCreateOptions struct {
	Action   UsersCreateAction           `json:"action"`
	UserInfo *UsersCreateOptionsUserInfo `json:"user_info"`
}

type UsersCreateOptionsUserInfo

type UsersCreateOptionsUserInfo struct {
	DisplayName *string `json:"display_name,omitempty"`
	Email       string  `json:"email"`
	FirstName   *string `json:"first_name,omitempty"`
	LastName    *string `json:"last_name,omitempty"`
	Password    *string `json:"password,omitempty"`
	Type        int     `json:"type"`
}

type UsersCreateResponse

type UsersCreateResponse struct {
	Email     string `json:"email"`
	FirstName string `json:"first_name"`
	ID        string `json:"id"`
	LastName  string `json:"last_name"`
	Type      int    `json:"type"`
}

type UsersDeleteOptions

type UsersDeleteOptions struct {
	Action *string `url:"action,omitempty"`
}

type UsersListItem

type UsersListItem struct {
	CustomAttributes  []*UsersListItemCustomAttribute `json:"custom_attributes"`
	Dept              string                          `json:"dept"`
	DisplayName       string                          `json:"display_name"`
	Email             string                          `json:"email"`
	EmployeeUniqueID  string                          `json:"employee_unique_id"`
	FirstName         string                          `json:"first_name"`
	GroupIDs          []string                        `json:"group_ids"`
	ID                string                          `json:"id"`
	ImGroupIDs        []string                        `json:"im_group_ids"`
	LastClientVersion string                          `json:"last_client_version"`
	LastLoginTime     time.Time                       `json:"last_login_time"`
	LastName          string                          `json:"last_name"`
	PlanUnitedType    string                          `json:"plan_united_type"`
	Pmi               int64                           `json:"pmi"`
	RoleID            string                          `json:"role_id"`
	Status            string                          `json:"status"`
	Timezone          string                          `json:"timezone"`
	Type              int                             `json:"type"`
	UserCreatedAt     time.Time                       `json:"user_created_at"`
	Verified          int                             `json:"verified"`
}

type UsersListItemCustomAttribute

type UsersListItemCustomAttribute struct {
	Key   string `json:"key"`
	Name  string `json:"name"`
	Value string `json:"value"`
}

type UsersListOptions

type UsersListOptions struct {
	*PaginationOptions `url:",omitempty"`

	IncludeFields *string `url:"include_fields,omitempty"`
	RoleID        *string `url:"role_id,omitempty"`
	Status        *string `url:"status,omitempty"`
}

type UsersListRecordingsFile

type UsersListRecordingsFile struct {
	DownloadURL    string                 `json:"download_url"`
	FileSize       int                    `json:"file_size"`
	FileType       UsersRecordingFileType `json:"file_type"`
	ID             string                 `json:"id"`
	MeetingID      string                 `json:"meeting_id"`
	RecordingEnd   EmptyTime              `json:"recording_end,omitempty"`
	RecordingStart time.Time              `json:"recording_start"`
	Status         UsersRecordingStatus   `json:"status"`
}

type UsersListRecordingsMeeting

type UsersListRecordingsMeeting struct {
	HostID         string                     `json:"host_id"`
	ID             int64                      `json:"id"`
	RecordingFiles []*UsersListRecordingsFile `json:"recording_files"`
	StartTime      time.Time                  `json:"start_time"`
}

type UsersListRecordingsOptions

type UsersListRecordingsOptions struct {
	*PaginationOptions `url:",omitempty"`

	MeetingID *int64 `url:"meeting_id,omitempty"`
}

type UsersListRecordingsResponse

type UsersListRecordingsResponse struct {
	*PaginationResponse

	Meetings []*UsersListRecordingsMeeting `json:"meetings"`
}

type UsersListResponse

type UsersListResponse struct {
	*PaginationResponse

	Users []*UsersListItem `json:"users"`
}

type UsersRecordingFileType

type UsersRecordingFileType string

type UsersRecordingStatus

type UsersRecordingStatus string

type UsersService

type UsersService struct {
	// contains filtered or unexported fields
}

func (*UsersService) Create

func (*UsersService) Delete

func (u *UsersService) Delete(ctx context.Context, userID string, opts *UsersDeleteOptions) (*http.Response, error)

func (*UsersService) List

func (*UsersService) ListRecordings

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL