MyApp

<back to all web services

QueryPlayer

Game
package dtos

import (
	ss "github.com/ServiceStack/servicestack-go"
)

type PhoneKind string

const (
	PhoneKindHome   PhoneKind = "Home"
	PhoneKindMobile           = "Mobile"
	PhoneKindWork             = "Work"
)

type Phone struct {
	Kind   PhoneKind `json:"kind,omitempty"`
	Number string    `json:"number"`
	Ext    string    `json:"ext"`
}

type PlayerGameItem struct {
	Id int `json:"id,omitempty"`
	// @References("typeof(MyApp.ServiceModel.Player)")
	PlayerId int `json:"playerId,omitempty"`
	// @References("typeof(MyApp.ServiceModel.GameItem)")
	GameItemName string `json:"gameItemName"`
}

type PlayerRole string

const (
	PlayerRoleLeader    PlayerRole = "Leader"
	PlayerRolePlayer               = "Player"
	PlayerRoleNonPlayer            = "NonPlayer"
)

type PlayerRegion string

const (
	PlayerRegionAfrica      PlayerRegion = "Africa"
	PlayerRegionAmericas                 = "Americas"
	PlayerRegionAsia                     = "Asia"
	PlayerRegionAustralasia              = "Australasia"
	PlayerRegionEurope                   = "Europe"
)

type Profile struct {
	ss.AuditBase
	Id          int               `json:"id,omitempty"`
	Role        PlayerRole        `json:"role,omitempty"`
	Region      PlayerRegion      `json:"region,omitempty"`
	Username    *string           `json:"username,omitempty"`
	HighScore   int64             `json:"highScore,omitempty"`
	GamesPlayed int64             `json:"gamesPlayed,omitempty"`
	Energy      int               `json:"energy,omitempty"`
	ProfileUrl  *string           `json:"profileUrl,omitempty"`
	CoverUrl    *string           `json:"coverUrl,omitempty"`
	Meta        map[string]string `json:"meta,omitempty"`
}

type Player struct {
	ss.AuditBase
	Id int `json:"id,omitempty"`
	// @Required()
	FirstName    string           `json:"firstName"`
	LastName     string           `json:"lastName"`
	Email        string           `json:"email"`
	PhoneNumbers []Phone          `json:"phoneNumbers"`
	GameItems    []PlayerGameItem `json:"gameItems"`
	Profile      Profile          `json:"profile"`
	ProfileId    int              `json:"profileId,omitempty"`
	SavedLevelId string           `json:"savedLevelId,omitempty"`
	RowVersion   uint64           `json:"rowVersion,omitempty"`
}

type QueryPlayer struct {
	ss.QueryDb
}

type Todo struct {
	Id         int64  `json:"id,omitempty"`
	Text       string `json:"text"`
	IsFinished bool   `json:"isFinished,omitempty"`
}

Go QueryPlayer DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /json/reply/QueryPlayer HTTP/1.1 
Host: blazor-gallery.servicestack.net 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"skip":0,"take":0,"orderBy":"String","orderByDesc":"String","include":"String","fields":"String","meta":{"String":"String"}}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"offset":0,"total":0,"results":[{"id":0,"firstName":"String","lastName":"String","email":"String","phoneNumbers":[{"kind":"Home","number":"String","ext":"String"}],"gameItems":[{"id":0,"playerId":0,"gameItemName":"String"}],"profile":{"id":0,"role":"Leader","region":"Africa","username":"String","highScore":0,"gamesPlayed":0,"energy":0,"profileUrl":"String","coverUrl":"String","meta":{"String":"String"},"createdDate":"0001-01-01T00:00:00","createdBy":"String","modifiedDate":"0001-01-01T00:00:00","modifiedBy":"String","deletedDate":"0001-01-01T00:00:00","deletedBy":"String"},"profileId":0,"savedLevelId":"00000000-0000-0000-0000-000000000000","rowVersion":0,"createdDate":"0001-01-01T00:00:00","createdBy":"String","modifiedDate":"0001-01-01T00:00:00","modifiedBy":"String","deletedDate":"0001-01-01T00:00:00","deletedBy":"String"}],"meta":{"String":"String"},"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}