Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DeleteRequest ¶
type DeleteRequest struct {
/**
* PathParams
*/
PathParams struct{}
/**
* QueryParams
*/
QueryParams struct{}
/**
* Body
*/
Body struct {
Entity tuple.Entity `json:"entity"`
Relation string `json:"relation"`
Subject tuple.Subject `json:"subject"`
}
}
DeleteRequest -
type ReadRequest ¶
type ReadRequest struct {
/**
* PathParams
*/
PathParams struct{}
/**
* QueryParams
*/
QueryParams struct{}
/**
* Body
*/
Body struct {
Filter filters.RelationTupleFilter `json:"filter"`
}
}
ReadRequest -
type WriteRequest ¶
type WriteRequest struct {
/**
* PathParams
*/
PathParams struct{}
/**
* QueryParams
*/
QueryParams struct{}
/**
* Body
*/
Body struct {
SchemaVersion utils.Version `json:"schema_version" form:"schema_version" xml:"schema_version"`
Entity tuple.Entity `json:"entity" form:"entity" xml:"entity"`
Relation string `json:"relation" form:"relation" xml:"relation"`
Subject tuple.Subject `json:"subject" form:"subject" xml:"subject"`
}
}
WriteRequest -
Click to show internal directories.
Click to hide internal directories.