47 lines
979 B
Go
47 lines
979 B
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
package models
|
|
|
|
// This file was generated by the swagger tool.
|
|
// Editing this file might prove futile when you re-run the swagger generate command
|
|
|
|
import (
|
|
strfmt "github.com/go-openapi/strfmt"
|
|
|
|
"github.com/go-openapi/swag"
|
|
)
|
|
|
|
// OpaqueToken opaque token
|
|
// swagger:model OpaqueToken
|
|
type OpaqueToken struct {
|
|
|
|
// opaque Id
|
|
OpaqueID string `json:"opaqueId,omitempty"`
|
|
|
|
// user agent
|
|
UserAgent string `json:"userAgent,omitempty"`
|
|
}
|
|
|
|
// Validate validates this opaque token
|
|
func (m *OpaqueToken) Validate(formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *OpaqueToken) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *OpaqueToken) UnmarshalBinary(b []byte) error {
|
|
var res OpaqueToken
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|