lib/api/sfgate/sfgate_models/user_role.go

82 lines
1.8 KiB
Go
Raw Normal View History

2021-07-31 03:05:02 +00:00
// Code generated by go-swagger; DO NOT EDIT.
2021-08-05 19:37:53 +00:00
// (c) 2012-2020 by Taxnexus, Inc.
2021-07-31 03:05:02 +00:00
// All rights reserved worldwide.
// Proprietary product; unlicensed use is not allowed
2021-08-05 19:37:53 +00:00
package sfgate_models
2021-07-31 03:05:02 +00:00
// 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"
)
// UserRole Relationship object that connects user to a role
//
// swagger:model UserRole
type UserRole struct {
2023-03-28 17:47:34 +00:00
// auth0role ID
2023-04-15 14:27:18 +00:00
Auth0roleID *string `json:"Auth0roleID,omitempty"`
2021-07-31 03:05:02 +00:00
2023-03-28 17:47:34 +00:00
// created by ID
2023-04-15 14:27:18 +00:00
CreatedByID *string `json:"CreatedByID,omitempty"`
2021-07-31 03:05:02 +00:00
2023-03-28 17:47:34 +00:00
// created date
CreatedDate *string `json:"CreatedDate,omitempty"`
2021-07-31 03:05:02 +00:00
2023-03-28 17:47:34 +00:00
// description
2023-04-15 14:27:18 +00:00
Description *string `json:"Description,omitempty"`
2021-07-31 03:05:02 +00:00
2023-03-28 17:47:34 +00:00
// ID
ID string `json:"ID,omitempty"`
// last modified by ID
2023-04-15 14:27:18 +00:00
LastModifiedByID *string `json:"LastModifiedByID,omitempty"`
2023-03-28 17:47:34 +00:00
// last modified date
LastModifiedDate *string `json:"LastModifiedDate,omitempty"`
// name
2023-04-15 14:27:18 +00:00
Name *string `json:"Name,omitempty"`
2023-03-28 17:47:34 +00:00
// role ID
2023-04-15 14:27:18 +00:00
RoleID *string `json:"RoleID,omitempty"`
2023-03-28 17:47:34 +00:00
// user ID
2023-04-15 14:27:18 +00:00
UserID *string `json:"UserID,omitempty"`
2021-07-31 03:05:02 +00:00
}
// Validate validates this user role
func (m *UserRole) Validate(formats strfmt.Registry) error {
return nil
}
// ContextValidate validates this user role based on context it is used
func (m *UserRole) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *UserRole) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *UserRole) UnmarshalBinary(b []byte) error {
var res UserRole
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}