All checks were successful
continuous-integration/drone/push Build is passing
53 lines
1.3 KiB
Go
53 lines
1.3 KiB
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"
|
|
"github.com/go-openapi/swag"
|
|
)
|
|
|
|
// AdminActionResponse AdminActionResponse models the server
|
|
// response to an admin action.
|
|
//
|
|
// swagger:model AdminActionResponse
|
|
type AdminActionResponse struct {
|
|
|
|
// Internal ID of the action.
|
|
// Example: 01H9QG6TZ9W5P0402VFRVM17TH
|
|
ActionID string `json:"action_id,omitempty"`
|
|
}
|
|
|
|
// Validate validates this admin action response
|
|
func (m *AdminActionResponse) Validate(formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validates this admin action response based on context it is used
|
|
func (m *AdminActionResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *AdminActionResponse) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *AdminActionResponse) UnmarshalBinary(b []byte) error {
|
|
var res AdminActionResponse
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|