28 lines
745 B
Go
28 lines
745 B
Go
|
// Code generated by go-swagger; DO NOT EDIT.
|
||
|
|
||
|
package 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"
|
||
|
)
|
||
|
|
||
|
// DecisionsDeleteRequestItem decisionsIDs
|
||
|
//
|
||
|
// swagger:model DecisionsDeleteRequestItem
|
||
|
type DecisionsDeleteRequestItem string
|
||
|
|
||
|
// Validate validates this decisions delete request item
|
||
|
func (m DecisionsDeleteRequestItem) Validate(formats strfmt.Registry) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// ContextValidate validates this decisions delete request item based on context it is used
|
||
|
func (m DecisionsDeleteRequestItem) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
||
|
return nil
|
||
|
}
|