87 lines
1.8 KiB
Go
87 lines
1.8 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
// All Code Copyright(c) 2018-2021 by Taxnexus, Inc.
|
|
// All rights reserved worldwide.
|
|
// Proprietary product; unlicensed use is not allowed
|
|
|
|
package sf_gate_models
|
|
|
|
// This file was generated by the swagger tool.
|
|
// Editing this file might prove futile when you re-run the swagger generate command
|
|
|
|
import (
|
|
"github.com/go-openapi/strfmt"
|
|
"github.com/go-openapi/swag"
|
|
)
|
|
|
|
// Period period
|
|
//
|
|
// swagger:model Period
|
|
type Period struct {
|
|
|
|
// Account that owns this Period
|
|
Accountid string `json:"accountid,omitempty"`
|
|
|
|
// Company
|
|
Companyid string `json:"companyid,omitempty"`
|
|
|
|
// Days
|
|
Days int64 `json:"days,omitempty"`
|
|
|
|
// End Date
|
|
Enddate string `json:"enddate,omitempty"`
|
|
|
|
// Taxnexus Record Id
|
|
ID string `json:"id,omitempty"`
|
|
|
|
// Month number
|
|
Month int64 `json:"month,omitempty"`
|
|
|
|
// Period Name
|
|
Name string `json:"name,omitempty"`
|
|
|
|
// Quarter number
|
|
Quarter int64 `json:"quarter,omitempty"`
|
|
|
|
// Source System identifier for this record, if any
|
|
Ref string `json:"ref,omitempty"`
|
|
|
|
// Semiannual number
|
|
Semiannual int64 `json:"semiannual,omitempty"`
|
|
|
|
// Start Date
|
|
Startdate string `json:"startdate,omitempty"`
|
|
|
|
// Status
|
|
Status string `json:"status,omitempty"`
|
|
|
|
// tenant identifier
|
|
Tenantid string `json:"tenantid,omitempty"`
|
|
|
|
// Year number
|
|
Year int64 `json:"year,omitempty"`
|
|
}
|
|
|
|
// Validate validates this period
|
|
func (m *Period) Validate(formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *Period) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *Period) UnmarshalBinary(b []byte) error {
|
|
var res Period
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|