// 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 members_models import ( "context" "github.com/go-openapi/strfmt" "github.com/go-openapi/swag/jsonutils" ) // DocumentParameter Tenant-owned document parameter // // swagger:model DocumentParameter type DocumentParameter struct { // created by ID CreatedByID *string `json:"CreatedByID,omitempty"` // created date CreatedDate *string `json:"CreatedDate,omitempty"` // deleted date DeletedDate *string `json:"DeletedDate,omitempty"` // document ID DocumentID *string `json:"DocumentID,omitempty"` // ID ID string `json:"ID,omitempty"` // is deleted IsDeleted *bool `json:"IsDeleted,omitempty"` // last modified by ID LastModifiedByID *string `json:"LastModifiedByID,omitempty"` // last modified date LastModifiedDate *string `json:"LastModifiedDate,omitempty"` // name Name *string `json:"Name,omitempty"` // tenant ID TenantID *string `json:"TenantID,omitempty"` // user ID UserID *string `json:"UserID,omitempty"` // value Value *string `json:"Value,omitempty"` } // Validate validates this document parameter func (m *DocumentParameter) Validate(formats strfmt.Registry) error { return nil } // ContextValidate validates this document parameter based on context it is used func (m *DocumentParameter) ContextValidate(ctx context.Context, formats strfmt.Registry) error { return nil } // MarshalBinary interface implementation func (m *DocumentParameter) MarshalBinary() ([]byte, error) { if m == nil { return nil, nil } return jsonutils.WriteJSON(m) } // UnmarshalBinary interface implementation func (m *DocumentParameter) UnmarshalBinary(b []byte) error { var res DocumentParameter if err := jsonutils.ReadJSON(b, &res); err != nil { return err } *m = res return nil }