lib/api/members/members_models/invoice.go

91 lines
1.9 KiB
Go
Raw Normal View History

2023-03-28 17:47:34 +00:00
// 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
// 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"
)
// Invoice invoice
//
2023-05-13 16:46:48 +00:00
// swagger:model invoice
2023-03-28 17:47:34 +00:00
type Invoice struct {
// amount
Amount float64 `json:"Amount,omitempty"`
// course ID
2023-04-15 14:27:18 +00:00
CourseID *string `json:"CourseID,omitempty"`
2023-03-28 17:47:34 +00:00
// created by ID
2023-04-15 14:27:18 +00:00
CreatedByID *string `json:"CreatedByID,omitempty"`
2023-03-28 17:47:34 +00:00
// created date
CreatedDate *string `json:"CreatedDate,omitempty"`
// currency
2023-04-15 14:27:18 +00:00
Currency *string `json:"Currency,omitempty"`
2023-03-28 17:47:34 +00:00
// due date
2023-04-15 14:27:18 +00:00
DueDate *string `json:"DueDate,omitempty"`
2023-03-28 17:47:34 +00:00
// ID
ID string `json:"ID,omitempty"`
// invoicenumber
2023-04-15 14:27:18 +00:00
Invoicenumber *string `json:"Invoicenumber,omitempty"`
2023-03-28 17:47:34 +00:00
// last modified by ID
2023-04-15 14:27:18 +00:00
LastModifiedByID *string `json:"LastModifiedByID,omitempty"`
2023-03-28 17:47:34 +00:00
// last modified date
LastModifiedDate *string `json:"LastModifiedDate,omitempty"`
// status
2023-04-15 14:27:18 +00:00
Status *string `json:"Status,omitempty"`
2023-03-28 17:47:34 +00:00
// transaction ID
2023-04-15 14:27:18 +00:00
TransactionID *string `json:"TransactionID,omitempty"`
2023-03-28 17:47:34 +00:00
// user ID
2023-04-15 14:27:18 +00:00
UserID *string `json:"UserID,omitempty"`
2023-03-28 17:47:34 +00:00
}
// Validate validates this invoice
func (m *Invoice) Validate(formats strfmt.Registry) error {
return nil
}
// ContextValidate validates this invoice based on context it is used
func (m *Invoice) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *Invoice) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *Invoice) UnmarshalBinary(b []byte) error {
var res Invoice
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}