lib/api/members/members_models/role.go

79 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
2023-04-07 18:00:15 +00:00
package members_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"
)
// 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-07-31 03:05:02 +00:00
// Created By
2023-04-15 14:27:18 +00:00
CreatedByID *string `json:"CreatedByID,omitempty"`
2021-07-31 03:05:02 +00:00
// Created Date
2023-04-15 14:27:18 +00:00
CreatedDate *string `json:"CreatedDate,omitempty"`
2021-07-31 03:05:02 +00:00
// Role Description
2023-04-15 14:27:18 +00:00
Description *string `json:"Description,omitempty"`
2021-07-31 03:05:02 +00:00
// Record Id
ID string `json:"ID,omitempty"`
// Last Modified By
2023-04-15 14:27:18 +00:00
LastModifiedByID *string `json:"LastModifiedByID,omitempty"`
2021-07-31 03:05:02 +00:00
// Last Modifed Date
2023-04-15 14:27:18 +00:00
LastModifiedDate *string `json:"LastModifiedDate,omitempty"`
2021-07-31 03:05:02 +00:00
// The name of this role
2023-04-15 14:27:18 +00:00
RoleName *string `json:"RoleName,omitempty"`
2021-07-31 03:05:02 +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-07-31 03:05:02 +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
}