lib/api/sfgate/sfgate_models/tenant_user.go

58 lines
1.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
2021-08-05 19:37:53 +00:00
package sfgate_models
2021-07-31 03:05:02 +00:00
import (
"context"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag/jsonutils"
2021-07-31 03:05:02 +00:00
)
// TenantUser Relationship object that connects users to a tenant
//
// swagger:model TenantUser
type TenantUser struct {
2021-08-05 19:37:53 +00:00
// The Tenant 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
// The Tenant ID
2023-04-15 14:41:16 +00:00
TenantID string `json:"TenantID,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
}
// 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 jsonutils.WriteJSON(m)
2021-07-31 03:05:02 +00:00
}
// UnmarshalBinary interface implementation
func (m *TenantUser) UnmarshalBinary(b []byte) error {
var res TenantUser
if err := jsonutils.ReadJSON(b, &res); err != nil {
2021-07-31 03:05:02 +00:00
return err
}
*m = res
return nil
}