93 lines
2.1 KiB
Go
93 lines
2.1 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/errors"
|
|
"github.com/go-openapi/strfmt"
|
|
"github.com/go-openapi/swag"
|
|
"github.com/go-openapi/validate"
|
|
)
|
|
|
|
// OAuth2Application OAuth2Application represents an OAuth2 application.
|
|
//
|
|
// swagger:model OAuth2Application
|
|
type OAuth2Application struct {
|
|
|
|
// client ID
|
|
ClientID string `json:"client_id,omitempty"`
|
|
|
|
// client secret
|
|
ClientSecret string `json:"client_secret,omitempty"`
|
|
|
|
// confidential client
|
|
ConfidentialClient bool `json:"confidential_client,omitempty"`
|
|
|
|
// created
|
|
// Format: date-time
|
|
Created strfmt.DateTime `json:"created,omitempty"`
|
|
|
|
// ID
|
|
ID int64 `json:"id,omitempty"`
|
|
|
|
// name
|
|
Name string `json:"name,omitempty"`
|
|
|
|
// redirect u r is
|
|
RedirectURIs []string `json:"redirect_uris"`
|
|
}
|
|
|
|
// Validate validates this o auth2 application
|
|
func (m *OAuth2Application) Validate(formats strfmt.Registry) error {
|
|
var res []error
|
|
|
|
if err := m.validateCreated(formats); err != nil {
|
|
res = append(res, err)
|
|
}
|
|
|
|
if len(res) > 0 {
|
|
return errors.CompositeValidationError(res...)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *OAuth2Application) validateCreated(formats strfmt.Registry) error {
|
|
if swag.IsZero(m.Created) { // not required
|
|
return nil
|
|
}
|
|
|
|
if err := validate.FormatOf("created", "body", "date-time", m.Created.String(), formats); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validates this o auth2 application based on context it is used
|
|
func (m *OAuth2Application) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *OAuth2Application) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *OAuth2Application) UnmarshalBinary(b []byte) error {
|
|
var res OAuth2Application
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|