Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var TestSuite = map[string]testsuite.Test{
"RealWorld_TBF": tbf,
}
TestSuite contains all the test cases that this package provides.
Functions ¶
This section is empty.
Types ¶
type Circle ¶
type Circle struct { ID CircleID `json:"id" datastore:"-"` Name string `json:"name"` ImageIDs []imageID `json:"-"` Images []*Image `json:"images" datastore:"-"` CreatedAt unixTime `json:"createdAt"` UpdatedAt unixTime `json:"updatedAt"` }
Circle represents information on participating organizations.
type CircleID ¶
type CircleID int64
CircleID means ID of Circle kind.
func (CircleID) FromPropertyValue ¶
func (id CircleID) FromPropertyValue(ctx context.Context, p datastore.Property) (dst interface{}, err error)
FromPropertyValue convert property value to the valid value as the application.
type Image ¶
type Image struct { ID imageID `json:"id" datastore:"-"` OwnerCircleID CircleID `json:"ownerCircleID"` GCSPath string `json:"gcsPath"` CreatedAt unixTime `json:"createdAt"` UpdatedAt unixTime `json:"updatedAt"` }
Image provides information about circle image on GCS.
Click to show internal directories.
Click to hide internal directories.