Documentation
¶
Index ¶
- type AppConentObject
- type AppInfoObject
- type AppKeyInfoObject
- type CheckAuthInfo
- type CreateAppRequestObject
- type CreateRoomRequestObj
- type CreateUserRequestObj
- type CreateUserResultObj
- type Filter
- type GenerateTokenAuthInfo
- type JRTCAuthInfo
- type ModifyAppNameRequestObject
- type ModifyAppStatusRequestObject
- type RoomInfoObj
- type RoomInfosObj
- type RoomUserNumInfos
- type Sort
- type UpdateRoomRequestObj
- type UserNumInfoObj
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AppConentObject ¶
type AppConentObject struct { /* 当前页码 (Optional) */ PageNumber int `json:"pageNumber"` /* 每页数量 (Optional) */ PageSize int `json:"pageSize"` /* 查询总数 (Optional) */ TotalElements int `json:"totalElements"` /* 总页数 (Optional) */ TotalPages int `json:"totalPages"` /* 分页内容 (Optional) */ Content []AppInfoObject `json:"content"` }
type AppInfoObject ¶
type AppInfoObject struct { /* 应用ID (Optional) */ AppId string `json:"appId"` /* 应用名称 (Optional) */ AppName string `json:"appName"` /* 应用状态: OPEN-启用, CLOSE-停用 (Optional) */ Status string `json:"status"` /* 计费类型: Duration-按时长 (Optional) */ BillType string `json:"billType"` /* 创建时间(UTC) (Optional) */ CreateTime string `json:"createTime"` }
type AppKeyInfoObject ¶
type CheckAuthInfo ¶
type CheckAuthInfo struct { /* appId (Optional) */ AppId string `json:"appId"` /* appKey (Optional) */ AppKey string `json:"appKey"` /* 用户id (Optional) */ UserId string `json:"userId"` /* 会议号 (Optional) */ RoomId int64 `json:"roomId"` /* 随机令牌 (Optional) */ Nonce string `json:"nonce"` /* 时间戳-毫秒 (Optional) */ Timestamp int64 `json:"timestamp"` /* token (Optional) */ Token string `json:"token"` }
type CreateAppRequestObject ¶
type CreateAppRequestObject struct { /* 应用名称 (Optional) */ AppName string `json:"appName"` }
type CreateRoomRequestObj ¶
type CreateUserRequestObj ¶
type CreateUserResultObj ¶
type GenerateTokenAuthInfo ¶
type GenerateTokenAuthInfo struct { /* appId (Optional) */ AppId string `json:"appId"` /* appKey (Optional) */ AppKey string `json:"appKey"` /* 用户id (Optional) */ UserId string `json:"userId"` /* 会议号 (Optional) */ RoomId int64 `json:"roomId"` /* 时间戳-毫秒 (Optional) */ Timestamp int64 `json:"timestamp"` }
type JRTCAuthInfo ¶
type JRTCAuthInfo struct { /* appId (Optional) */ AppId string `json:"appId"` /* appKey (Optional) */ AppKey string `json:"appKey"` /* 用户id (Optional) */ UserId string `json:"userId"` /* 会议号 (Optional) */ RoomId int64 `json:"roomId"` /* 随机令牌 (Optional) */ Nonce string `json:"nonce"` /* 时间戳-毫秒 (Optional) */ Timestamp int64 `json:"timestamp"` /* token (Optional) */ Token string `json:"token"` /* 是否可用(true-可用,false-不可用) (Optional) */ Available bool `json:"available"` }
type RoomInfoObj ¶ added in v1.52.0
type RoomInfoObj struct { /* 房间ID (Optional) */ RoomId int64 `json:"roomId"` /* 房间名称 (Optional) */ RoomName string `json:"roomName"` /* appId (Optional) */ AppId string `json:"appId"` /* 用户ID(创建者ID) (Optional) */ PeerId int64 `json:"peerId"` /* 创建时间 (Optional) */ CreateTime string `json:"createTime"` /* 更新时间 (Optional) */ UpdateTime string `json:"updateTime"` }
type RoomInfosObj ¶ added in v1.52.0
type RoomInfosObj struct { /* 当前页码 (Optional) */ PageNumber int `json:"pageNumber"` /* 每页数量 (Optional) */ PageSize int `json:"pageSize"` /* 查询总数 (Optional) */ TotalElements int `json:"totalElements"` /* 总页数 (Optional) */ TotalPages int `json:"totalPages"` /* 分页内容 (Optional) */ Content []RoomInfoObj `json:"content"` }
type RoomUserNumInfos ¶
type RoomUserNumInfos struct { /* 当前页码 (Optional) */ PageNumber int `json:"pageNumber"` /* 每页数量 (Optional) */ PageSize int `json:"pageSize"` /* 查询总数 (Optional) */ TotalElements int `json:"totalElements"` /* 总页数 (Optional) */ TotalPages int `json:"totalPages"` /* 分页内容 (Optional) */ Content []UserNumInfoObj `json:"content"` }
type UpdateRoomRequestObj ¶ added in v1.52.0
Source Files
¶
- AppConentObject.go
- AppInfoObject.go
- AppKeyInfoObject.go
- CheckAuthInfo.go
- CreateAppRequestObject.go
- CreateRoomRequestObj.go
- CreateUserRequestObj.go
- CreateUserResultObj.go
- Filter.go
- GenerateTokenAuthInfo.go
- JRTCAuthInfo.go
- ModifyAppNameRequestObject.go
- ModifyAppStatusRequestObject.go
- RoomInfoObj.go
- RoomInfosObj.go
- RoomUserNumInfos.go
- Sort.go
- UpdateRoomRequestObj.go
- UserNumInfoObj.go
Click to show internal directories.
Click to hide internal directories.