lib/api/sfgate/sfgate_models/role.go

79 lines
1.8 KiB
Go
Raw Normal View History

2021-08-05 19:37:53 +00:00
// 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 sfgate_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"
)
// Role A functional role within a Tenant
//
// swagger:model Role
type Role struct {
// the corresponding auth0 role
2023-04-15 14:27:18 +00:00
Auth0RoleID *string `json:"Auth0RoleID,omitempty"`
2021-08-05 19:37:53 +00:00
// created by
2023-06-17 16:42:54 +00:00
CreatedByID *string `json:"CreatedByID,omitempty"`
2021-08-05 19:37:53 +00:00
// created date
2023-04-15 14:27:18 +00:00
CreatedDate *string `json:"CreatedDate,omitempty"`
2021-08-05 19:37:53 +00:00
// role description
2023-04-15 14:27:18 +00:00
Description *string `json:"Description,omitempty"`
2021-08-05 19:37:53 +00:00
// record id
2023-03-28 17:47:34 +00:00
ID string `json:"ID,omitempty"`
2021-08-05 19:37:53 +00:00
// last modified by
2023-04-15 14:27:18 +00:00
LastModifiedByID *string `json:"LastModifiedByID,omitempty"`
2021-08-05 19:37:53 +00:00
// last modifed date
2023-04-15 14:27:18 +00:00
LastModifiedDate *string `json:"LastModifiedDate,omitempty"`
2021-08-05 19:37:53 +00:00
// the name of this role
2023-04-15 14:27:18 +00:00
RoleName *string `json:"RoleName,omitempty"`
2021-08-05 19:37:53 +00:00
// the id of the tenant that owns this role
2023-04-15 14:27:18 +00:00
TenantID *string `json:"TenantID,omitempty"`
2021-08-05 19:37:53 +00:00
}
// Validate validates this role
func (m *Role) Validate(formats strfmt.Registry) error {
return nil
}
// ContextValidate validates this role based on context it is used
func (m *Role) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *Role) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *Role) UnmarshalBinary(b []byte) error {
var res Role
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}