Mohamed Abukar | 429da19 | 2020-02-26 16:46:34 +0200 | [diff] [blame] | 1 | // Code generated by go-swagger; DO NOT EDIT. |
| 2 | |
| 3 | package clientmodel |
| 4 | |
| 5 | // This file was generated by the swagger tool. |
| 6 | // Editing this file might prove futile when you re-run the swagger generate command |
| 7 | |
| 8 | import ( |
| 9 | strfmt "github.com/go-openapi/strfmt" |
| 10 | |
| 11 | "github.com/go-openapi/errors" |
| 12 | "github.com/go-openapi/swag" |
| 13 | "github.com/go-openapi/validate" |
| 14 | ) |
| 15 | |
| 16 | // ImperativePolicyDefinition imperative policy definition |
| 17 | // swagger:model ImperativePolicyDefinition |
| 18 | type ImperativePolicyDefinition struct { |
| 19 | |
| 20 | // policy parameter ID |
| 21 | // Required: true |
| 22 | PolicyParameterID *int64 `json:"PolicyParameterID"` |
| 23 | |
| 24 | // policy parameter value |
| 25 | // Required: true |
| 26 | PolicyParameterValue *int64 `json:"PolicyParameterValue"` |
| 27 | } |
| 28 | |
| 29 | // Validate validates this imperative policy definition |
| 30 | func (m *ImperativePolicyDefinition) Validate(formats strfmt.Registry) error { |
| 31 | var res []error |
| 32 | |
| 33 | if err := m.validatePolicyParameterID(formats); err != nil { |
| 34 | res = append(res, err) |
| 35 | } |
| 36 | |
| 37 | if err := m.validatePolicyParameterValue(formats); err != nil { |
| 38 | res = append(res, err) |
| 39 | } |
| 40 | |
| 41 | if len(res) > 0 { |
| 42 | return errors.CompositeValidationError(res...) |
| 43 | } |
| 44 | return nil |
| 45 | } |
| 46 | |
| 47 | func (m *ImperativePolicyDefinition) validatePolicyParameterID(formats strfmt.Registry) error { |
| 48 | |
| 49 | if err := validate.Required("PolicyParameterID", "body", m.PolicyParameterID); err != nil { |
| 50 | return err |
| 51 | } |
| 52 | |
| 53 | return nil |
| 54 | } |
| 55 | |
| 56 | func (m *ImperativePolicyDefinition) validatePolicyParameterValue(formats strfmt.Registry) error { |
| 57 | |
| 58 | if err := validate.Required("PolicyParameterValue", "body", m.PolicyParameterValue); err != nil { |
| 59 | return err |
| 60 | } |
| 61 | |
| 62 | return nil |
| 63 | } |
| 64 | |
| 65 | // MarshalBinary interface implementation |
| 66 | func (m *ImperativePolicyDefinition) MarshalBinary() ([]byte, error) { |
| 67 | if m == nil { |
| 68 | return nil, nil |
| 69 | } |
| 70 | return swag.WriteJSON(m) |
| 71 | } |
| 72 | |
| 73 | // UnmarshalBinary interface implementation |
| 74 | func (m *ImperativePolicyDefinition) UnmarshalBinary(b []byte) error { |
| 75 | var res ImperativePolicyDefinition |
| 76 | if err := swag.ReadJSON(b, &res); err != nil { |
| 77 | return err |
| 78 | } |
| 79 | *m = res |
| 80 | return nil |
| 81 | } |