// 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 { // The client ID of the OAuth2 application ClientID string `json:"client_id,omitempty"` // The client secret of the OAuth2 application ClientSecret string `json:"client_secret,omitempty"` // Whether the client is confidential ConfidentialClient bool `json:"confidential_client,omitempty"` // The timestamp when the application was created // Format: date-time Created strfmt.DateTime `json:"created,omitempty"` // The unique identifier of the OAuth2 application ID int64 `json:"id,omitempty"` // The name of the OAuth2 application Name string `json:"name,omitempty"` // The list of allowed redirect URIs RedirectURIs []string `json:"redirect_uris"` // Whether to skip secondary authorization SkipSecondaryAuthorization bool `json:"skip_secondary_authorization,omitempty"` } // 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 }