lib/api/members/members_models/transaction.go

91 lines
2.0 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"
)
// Transaction transaction
//
2023-05-13 16:46:48 +00:00
// swagger:model transaction
2023-03-28 17:47:34 +00:00
type Transaction 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
// enrollment ID
2023-04-15 14:27:18 +00:00
EnrollmentID *string `json:"EnrollmentID,omitempty"`
2023-03-28 17:47:34 +00:00
// ID
ID string `json:"ID,omitempty"`
// 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"`
// payment method ID
2023-04-15 14:27:18 +00:00
PaymentMethodID *string `json:"PaymentMethodID,omitempty"`
2023-03-28 17:47:34 +00:00
// status
Status *string `json:"Status,omitempty"`
// transaction date
2023-04-15 14:27:18 +00:00
TransactionDate *string `json:"TransactionDate,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 transaction
func (m *Transaction) Validate(formats strfmt.Registry) error {
return nil
}
// ContextValidate validates this transaction based on context it is used
func (m *Transaction) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *Transaction) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *Transaction) UnmarshalBinary(b []byte) error {
var res Transaction
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}