Documentation
¶
Index ¶
- type ModelsBulkGetPlayerRecordResponse
- type ModelsBulkUserIDsRequest
- type ModelsConcurrentRecordRequest
- type ModelsGameRecord
- type ModelsGameRecordRequest
- type ModelsListGameRecordKeys
- type ModelsListPlayerRecordKeys
- type ModelsPagination
- type ModelsPlayerRecord
- type ModelsPlayerRecordKey
- type ModelsPlayerRecordRequest
- type ModelsResponseError
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ModelsBulkGetPlayerRecordResponse ¶ added in v0.10.0
type ModelsBulkGetPlayerRecordResponse struct {
// data
// Required: true
Data []*ModelsPlayerRecord `json:"data"`
}
ModelsBulkGetPlayerRecordResponse models bulk get player record response
swagger:model models.BulkGetPlayerRecordResponse
func (*ModelsBulkGetPlayerRecordResponse) MarshalBinary ¶ added in v0.10.0
func (m *ModelsBulkGetPlayerRecordResponse) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*ModelsBulkGetPlayerRecordResponse) UnmarshalBinary ¶ added in v0.10.0
func (m *ModelsBulkGetPlayerRecordResponse) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type ModelsBulkUserIDsRequest ¶ added in v0.10.0
type ModelsBulkUserIDsRequest struct {
// user ids
// Required: true
UserIds []string `json:"userIds"`
}
ModelsBulkUserIDsRequest models bulk user i ds request
swagger:model models.BulkUserIDsRequest
func (*ModelsBulkUserIDsRequest) MarshalBinary ¶ added in v0.10.0
func (m *ModelsBulkUserIDsRequest) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*ModelsBulkUserIDsRequest) UnmarshalBinary ¶ added in v0.10.0
func (m *ModelsBulkUserIDsRequest) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type ModelsConcurrentRecordRequest ¶
type ModelsConcurrentRecordRequest struct {
// updated at
// Required: true
UpdatedAt *string `json:"updatedAt"`
// value
// Required: true
Value interface{} `json:"value"`
}
ModelsConcurrentRecordRequest models concurrent record request
swagger:model models.ConcurrentRecordRequest
func (*ModelsConcurrentRecordRequest) MarshalBinary ¶
func (m *ModelsConcurrentRecordRequest) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*ModelsConcurrentRecordRequest) UnmarshalBinary ¶
func (m *ModelsConcurrentRecordRequest) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type ModelsGameRecord ¶
type ModelsGameRecord struct {
// created at
// Required: true
// Format: date-time
CreatedAt *strfmt.DateTime `json:"created_at"`
// key
// Required: true
Key *string `json:"key"`
// namespace
// Required: true
Namespace *string `json:"namespace"`
// updated at
// Required: true
// Format: date-time
UpdatedAt *strfmt.DateTime `json:"updated_at"`
// value
// Required: true
Value interface{} `json:"value"`
}
ModelsGameRecord models game record
swagger:model models.GameRecord
func (*ModelsGameRecord) MarshalBinary ¶
func (m *ModelsGameRecord) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*ModelsGameRecord) UnmarshalBinary ¶
func (m *ModelsGameRecord) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type ModelsGameRecordRequest ¶
type ModelsGameRecordRequest interface{}
ModelsGameRecordRequest models game record request
swagger:model models.GameRecordRequest
type ModelsListGameRecordKeys ¶
type ModelsListGameRecordKeys struct {
// data
// Required: true
Data []string `json:"data"`
// paging
// Required: true
Paging *ModelsPagination `json:"paging"`
}
ModelsListGameRecordKeys models list game record keys
swagger:model models.ListGameRecordKeys
func (*ModelsListGameRecordKeys) MarshalBinary ¶
func (m *ModelsListGameRecordKeys) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*ModelsListGameRecordKeys) UnmarshalBinary ¶
func (m *ModelsListGameRecordKeys) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type ModelsListPlayerRecordKeys ¶
type ModelsListPlayerRecordKeys struct {
// data
// Required: true
Data []*ModelsPlayerRecordKey `json:"data"`
// paging
// Required: true
Paging *ModelsPagination `json:"paging"`
}
ModelsListPlayerRecordKeys models list player record keys
swagger:model models.ListPlayerRecordKeys
func (*ModelsListPlayerRecordKeys) MarshalBinary ¶
func (m *ModelsListPlayerRecordKeys) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*ModelsListPlayerRecordKeys) UnmarshalBinary ¶
func (m *ModelsListPlayerRecordKeys) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type ModelsPagination ¶
type ModelsPagination struct {
// first
// Required: true
First *string `json:"first"`
// last
// Required: true
Last *string `json:"last"`
// next
// Required: true
Next *string `json:"next"`
// previous
// Required: true
Previous *string `json:"previous"`
}
ModelsPagination models pagination
swagger:model models.Pagination
func (*ModelsPagination) MarshalBinary ¶
func (m *ModelsPagination) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*ModelsPagination) UnmarshalBinary ¶
func (m *ModelsPagination) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type ModelsPlayerRecord ¶
type ModelsPlayerRecord struct {
// created at
// Required: true
// Format: date-time
CreatedAt *strfmt.DateTime `json:"created_at"`
// is public
// Required: true
IsPublic *bool `json:"is_public"`
// key
// Required: true
Key *string `json:"key"`
// namespace
// Required: true
Namespace *string `json:"namespace"`
// updated at
// Required: true
// Format: date-time
UpdatedAt *strfmt.DateTime `json:"updated_at"`
// user id
// Required: true
UserID *string `json:"user_id"`
// value
// Required: true
Value interface{} `json:"value"`
}
ModelsPlayerRecord models player record
swagger:model models.PlayerRecord
func (*ModelsPlayerRecord) MarshalBinary ¶
func (m *ModelsPlayerRecord) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*ModelsPlayerRecord) UnmarshalBinary ¶
func (m *ModelsPlayerRecord) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type ModelsPlayerRecordKey ¶
type ModelsPlayerRecordKey struct {
// key
// Required: true
Key *string `json:"key"`
// user id
// Required: true
UserID *string `json:"user_id"`
}
ModelsPlayerRecordKey models player record key
swagger:model models.PlayerRecordKey
func (*ModelsPlayerRecordKey) MarshalBinary ¶
func (m *ModelsPlayerRecordKey) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*ModelsPlayerRecordKey) UnmarshalBinary ¶
func (m *ModelsPlayerRecordKey) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
type ModelsPlayerRecordRequest ¶
type ModelsPlayerRecordRequest interface{}
ModelsPlayerRecordRequest models player record request
swagger:model models.PlayerRecordRequest
type ModelsResponseError ¶ added in v0.7.0
type ModelsResponseError struct {
// error code
// Required: true
ErrorCode *int32 `json:"errorCode"`
// error message
// Required: true
ErrorMessage *string `json:"errorMessage"`
}
ModelsResponseError models response error
swagger:model models.ResponseError
func (*ModelsResponseError) MarshalBinary ¶ added in v0.7.0
func (m *ModelsResponseError) MarshalBinary() ([]byte, error)
MarshalBinary interface implementation
func (*ModelsResponseError) UnmarshalBinary ¶ added in v0.7.0
func (m *ModelsResponseError) UnmarshalBinary(b []byte) error
UnmarshalBinary interface implementation
Source Files
¶
- models_bulk_get_player_record_response.go
- models_bulk_user_i_ds_request.go
- models_concurrent_record_request.go
- models_game_record.go
- models_game_record_request.go
- models_list_game_record_keys.go
- models_list_player_record_keys.go
- models_pagination.go
- models_player_record.go
- models_player_record_key.go
- models_player_record_request.go
- models_response_error.go