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"
|
|
|
|
)
|
|
|
|
|
|
|
|
// UserRole Relationship object that connects user to a role
|
|
|
|
//
|
2023-05-13 16:46:48 +00:00
|
|
|
// swagger:model userRole
|
2021-07-31 03:05:02 +00:00
|
|
|
type UserRole struct {
|
|
|
|
|
|
|
|
// Account Id
|
2023-04-15 14:27:18 +00:00
|
|
|
AccountID *string `json:"AccountID,omitempty"`
|
2021-07-31 03:05:02 +00:00
|
|
|
|
|
|
|
// Linked role ID
|
2023-04-15 14:27:18 +00:00
|
|
|
Auth0RoleID *string `json:"Auth0RoleID,omitempty"`
|
2021-07-31 03:05:02 +00:00
|
|
|
|
|
|
|
// Auth0 User ID
|
2023-04-15 14:27:18 +00:00
|
|
|
Auth0UserID *string `json:"Auth0UserID,omitempty"`
|
2021-07-31 03:05:02 +00:00
|
|
|
|
|
|
|
// Company Name
|
2023-04-15 14:27:18 +00:00
|
|
|
CompanyName *string `json:"CompanyName,omitempty"`
|
2021-07-31 03:05:02 +00:00
|
|
|
|
|
|
|
// Contact ID
|
2023-04-15 14:27:18 +00:00
|
|
|
ContactID *string `json:"ContactID,omitempty"`
|
2021-07-31 03:05:02 +00:00
|
|
|
|
|
|
|
// Role description
|
2023-04-15 14:27:18 +00:00
|
|
|
RoleDescription *string `json:"RoleDescription,omitempty"`
|
2021-07-31 03:05:02 +00:00
|
|
|
|
|
|
|
// The Role ID
|
2023-04-15 14:27:18 +00:00
|
|
|
RoleID *string `json:"RoleID,omitempty"`
|
2021-07-31 03:05:02 +00:00
|
|
|
|
|
|
|
// Role Name
|
2023-04-15 14:27:18 +00:00
|
|
|
RoleName *string `json:"RoleName,omitempty"`
|
2021-07-31 03:05:02 +00:00
|
|
|
|
2023-03-28 17:47:34 +00:00
|
|
|
// Account Number
|
2023-04-15 14:27:18 +00:00
|
|
|
TaxnexusAccount *string `json:"TaxnexusAccount,omitempty"`
|
2021-07-31 03:05:02 +00:00
|
|
|
|
|
|
|
// User Email Address
|
2023-04-15 14:27:18 +00:00
|
|
|
UserEmail *string `json:"UserEmail,omitempty"`
|
2021-07-31 03:05:02 +00:00
|
|
|
|
|
|
|
// User Full Name
|
2023-04-15 14:27:18 +00:00
|
|
|
UserFullName *string `json:"UserFullName,omitempty"`
|
2021-07-31 03:05:02 +00:00
|
|
|
|
|
|
|
// The User ID
|
2023-04-15 14:27:18 +00:00
|
|
|
UserID *string `json:"UserID,omitempty"`
|
2021-07-31 03:05:02 +00:00
|
|
|
|
|
|
|
// Username
|
2023-04-15 14:27:18 +00:00
|
|
|
Username *string `json:"Username,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
|
|
|
|
}
|