63 lines
1.3 KiB
Go
63 lines
1.3 KiB
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 (
|
||
|
"context"
|
||
|
|
||
|
"github.com/go-openapi/strfmt"
|
||
|
"github.com/go-openapi/swag"
|
||
|
)
|
||
|
|
||
|
// AccessToken AccessToken represents an API access token.
|
||
|
//
|
||
|
// swagger:model AccessToken
|
||
|
type AccessToken struct {
|
||
|
|
||
|
// ID
|
||
|
ID int64 `json:"id,omitempty"`
|
||
|
|
||
|
// name
|
||
|
Name string `json:"name,omitempty"`
|
||
|
|
||
|
// scopes
|
||
|
Scopes []string `json:"scopes"`
|
||
|
|
||
|
// token
|
||
|
Token string `json:"sha1,omitempty"`
|
||
|
|
||
|
// token last eight
|
||
|
TokenLastEight string `json:"token_last_eight,omitempty"`
|
||
|
}
|
||
|
|
||
|
// Validate validates this access token
|
||
|
func (m *AccessToken) Validate(formats strfmt.Registry) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// ContextValidate validates this access token based on context it is used
|
||
|
func (m *AccessToken) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// MarshalBinary interface implementation
|
||
|
func (m *AccessToken) MarshalBinary() ([]byte, error) {
|
||
|
if m == nil {
|
||
|
return nil, nil
|
||
|
}
|
||
|
return swag.WriteJSON(m)
|
||
|
}
|
||
|
|
||
|
// UnmarshalBinary interface implementation
|
||
|
func (m *AccessToken) UnmarshalBinary(b []byte) error {
|
||
|
var res AccessToken
|
||
|
if err := swag.ReadJSON(b, &res); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
*m = res
|
||
|
return nil
|
||
|
}
|