lib/api/sfgate/sfgate_models/message.go

61 lines
1.3 KiB
Go
Raw Permalink Normal View History

2023-09-12 03:49:57 +00:00
// Code generated by go-swagger; DO NOT EDIT.
2023-09-23 17:19:44 +00:00
// (c) 2012-2023 by Vernon Keenan
2023-09-12 03:49:57 +00:00
// All rights reserved worldwide.
// Proprietary product; unlicensed use is not allowed
2023-09-23 17:19:44 +00:00
package sfgate_models
2023-09-12 03:49:57 +00:00
// 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"
)
2023-09-23 17:19:44 +00:00
// Message message
2023-09-12 03:49:57 +00:00
//
2023-09-23 17:19:44 +00:00
// swagger:model Message
type Message struct {
2023-09-12 03:49:57 +00:00
2023-09-23 17:19:44 +00:00
// message
Message string `json:"message,omitempty"`
2023-09-12 03:49:57 +00:00
2023-09-23 17:19:44 +00:00
// ref
Ref *string `json:"ref,omitempty"`
// status
Status int64 `json:"status,omitempty"`
2023-09-12 03:49:57 +00:00
}
2023-09-23 17:19:44 +00:00
// Validate validates this message
func (m *Message) Validate(formats strfmt.Registry) error {
2023-09-12 03:49:57 +00:00
return nil
}
2023-09-23 17:19:44 +00:00
// ContextValidate validates this message based on context it is used
func (m *Message) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
2023-09-12 03:49:57 +00:00
return nil
}
// MarshalBinary interface implementation
2023-09-23 17:19:44 +00:00
func (m *Message) MarshalBinary() ([]byte, error) {
2023-09-12 03:49:57 +00:00
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
2023-09-23 17:19:44 +00:00
func (m *Message) UnmarshalBinary(b []byte) error {
var res Message
2023-09-12 03:49:57 +00:00
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}