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"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Order order
|
|
|
|
//
|
2023-05-13 16:46:48 +00:00
|
|
|
// swagger:model order
|
2023-03-28 17:47:34 +00:00
|
|
|
type Order struct {
|
|
|
|
|
|
|
|
// amountpa ID
|
|
|
|
AmountpaID *float64 `json:"AmountpaID,omitempty"`
|
|
|
|
|
|
|
|
// createdat
|
|
|
|
Createdat *string `json:"Createdat,omitempty"`
|
|
|
|
|
|
|
|
// event ID
|
2023-04-15 14:27:18 +00:00
|
|
|
EventID *string `json:"EventID,omitempty"`
|
2023-03-28 17:47:34 +00:00
|
|
|
|
|
|
|
// ID
|
|
|
|
ID string `json:"ID,omitempty"`
|
|
|
|
|
|
|
|
// order status
|
2023-04-15 14:27:18 +00:00
|
|
|
OrderStatus *string `json:"OrderStatus,omitempty"`
|
2023-03-28 17:47:34 +00:00
|
|
|
|
|
|
|
// payment method
|
|
|
|
PaymentMethod *string `json:"PaymentMethod,omitempty"`
|
|
|
|
|
|
|
|
// ticket ID
|
2023-04-15 14:27:18 +00:00
|
|
|
TicketID *string `json:"TicketID,omitempty"`
|
2023-03-28 17:47:34 +00:00
|
|
|
|
|
|
|
// up datedat
|
|
|
|
UpDatedat *string `json:"UpDatedat,omitempty"`
|
|
|
|
|
|
|
|
// 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 order
|
|
|
|
func (m *Order) Validate(formats strfmt.Registry) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ContextValidate validates this order based on context it is used
|
|
|
|
func (m *Order) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// MarshalBinary interface implementation
|
|
|
|
func (m *Order) MarshalBinary() ([]byte, error) {
|
|
|
|
if m == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return swag.WriteJSON(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnmarshalBinary interface implementation
|
|
|
|
func (m *Order) UnmarshalBinary(b []byte) error {
|
|
|
|
var res Order
|
|
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
*m = res
|
|
|
|
return nil
|
|
|
|
}
|