Lines Matching defs:ID
58 ID *ID `json:"id,omitempty"`
62 // It will always have the ID field set to tie it back to a request, and will
72 // ID must be set and is the identifier of the Request this is a response to.
73 ID *ID `json:"id,omitempty"`
92 // ID is a Request identifier.
95 type ID struct {
122 // String returns a string representation of the ID.
125 func (id *ID) String() string {
135 func (id *ID) MarshalJSON() ([]byte, error) {
142 func (id *ID) UnmarshalJSON(data []byte) error {
143 *id = ID{}