| // Code generated by go-swagger; DO NOT EDIT. |
| |
| package clientmodel |
| |
| // This file was generated by the swagger tool. |
| // Editing this file might prove futile when you re-run the swagger generate command |
| |
| import ( |
| strfmt "github.com/go-openapi/strfmt" |
| |
| "github.com/go-openapi/swag" |
| ) |
| |
| // ControlParams control params |
| // swagger:model ControlParams |
| type ControlParams struct { |
| |
| // requestor Id |
| RequestorID int64 `json:"RequestorId,omitempty"` |
| |
| // t b d |
| TBD string `json:"TBD,omitempty"` |
| } |
| |
| // Validate validates this control params |
| func (m *ControlParams) Validate(formats strfmt.Registry) error { |
| return nil |
| } |
| |
| // MarshalBinary interface implementation |
| func (m *ControlParams) MarshalBinary() ([]byte, error) { |
| if m == nil { |
| return nil, nil |
| } |
| return swag.WriteJSON(m) |
| } |
| |
| // UnmarshalBinary interface implementation |
| func (m *ControlParams) UnmarshalBinary(b []byte) error { |
| var res ControlParams |
| if err := swag.ReadJSON(b, &res); err != nil { |
| return err |
| } |
| *m = res |
| return nil |
| } |