lib/api/members/members_models/tenant_user.go

100 lines
2.3 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"
)
// TenantUser Relationship object that connects users to a tenant
//
2023-05-13 16:46:48 +00:00
// swagger:model tenantUser
2021-07-31 03:05:02 +00:00
type TenantUser struct {
// The makeTenantUser access level for this User
2023-04-15 14:27:18 +00:00
AccessLevel *string `json:"AccessLevel,omitempty"`
2021-07-31 03:05:02 +00:00
// Account ID
2023-04-15 14:27:18 +00:00
AccountID *string `json:"AccountID,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
// Account 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
2023-03-28 17:47:34 +00:00
// Account
2023-06-05 00:09:35 +00:00
ExternalAccount *string `json:"ExternalAccount,omitempty"`
2021-07-31 03:05:02 +00:00
// Tenant active?
2023-04-15 14:27:18 +00:00
TenantActive *bool `json:"TenantActive,omitempty"`
2021-07-31 03:05:02 +00:00
// The Tenant ID
2023-04-15 14:27:18 +00:00
TenantID *string `json:"TenantID,omitempty"`
2021-07-31 03:05:02 +00:00
// Tenant Name
2023-04-15 14:27:18 +00:00
TenantName *string `json:"TenantName,omitempty"`
2021-07-31 03:05:02 +00:00
// Tenant Status
2023-04-15 14:27:18 +00:00
TenantStatus *string `json:"TenantStatus,omitempty"`
2021-07-31 03:05:02 +00:00
// Tenant type
2023-04-15 14:27:18 +00:00
TenantType *string `json:"TenantType,omitempty"`
2021-07-31 03:05:02 +00:00
// Tenant Version
2023-04-15 14:27:18 +00:00
TenantVersion *string `json:"TenantVersion,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 tenant user
func (m *TenantUser) Validate(formats strfmt.Registry) error {
return nil
}
// ContextValidate validates this tenant user based on context it is used
func (m *TenantUser) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *TenantUser) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *TenantUser) UnmarshalBinary(b []byte) error {
var res TenantUser
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}