// Code generated by go-swagger; DO NOT EDIT. // (c) 2012-2020 by Taxnexus, Inc. // All rights reserved worldwide. // Proprietary product; unlicensed use is not allowed package auth0_models // This file was generated by the swagger tool. // Editing this file might prove futile when you re-run the swagger generate command import ( "github.com/go-openapi/strfmt" "github.com/go-openapi/swag" ) // CredentialsResponse credentials response // // swagger:model CredentialsResponse type CredentialsResponse struct { // access token AccessToken string `json:"access_token,omitempty"` // expires in ExpiresIn int64 `json:"expires_in,omitempty"` // scope Scope string `json:"scope,omitempty"` // token type TokenType string `json:"token_type,omitempty"` } // Validate validates this credentials response func (m *CredentialsResponse) Validate(formats strfmt.Registry) error { return nil } // MarshalBinary interface implementation func (m *CredentialsResponse) MarshalBinary() ([]byte, error) { if m == nil { return nil, nil } return swag.WriteJSON(m) } // UnmarshalBinary interface implementation func (m *CredentialsResponse) UnmarshalBinary(b []byte) error { var res CredentialsResponse if err := swag.ReadJSON(b, &res); err != nil { return err } *m = res return nil }