57 lines
1.4 KiB
Go
57 lines
1.4 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"
|
|
)
|
|
|
|
// CreateWikiPageOptions CreateWikiPageOptions form for creating wiki
|
|
//
|
|
// swagger:model CreateWikiPageOptions
|
|
type CreateWikiPageOptions struct {
|
|
|
|
// content must be base64 encoded
|
|
ContentBase64 string `json:"content_base64,omitempty"`
|
|
|
|
// optional commit message summarizing the change
|
|
Message string `json:"message,omitempty"`
|
|
|
|
// page title. leave empty to keep unchanged
|
|
Title string `json:"title,omitempty"`
|
|
}
|
|
|
|
// Validate validates this create wiki page options
|
|
func (m *CreateWikiPageOptions) Validate(formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// ContextValidate validates this create wiki page options based on context it is used
|
|
func (m *CreateWikiPageOptions) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
|
return nil
|
|
}
|
|
|
|
// MarshalBinary interface implementation
|
|
func (m *CreateWikiPageOptions) MarshalBinary() ([]byte, error) {
|
|
if m == nil {
|
|
return nil, nil
|
|
}
|
|
return swag.WriteJSON(m)
|
|
}
|
|
|
|
// UnmarshalBinary interface implementation
|
|
func (m *CreateWikiPageOptions) UnmarshalBinary(b []byte) error {
|
|
var res CreateWikiPageOptions
|
|
if err := swag.ReadJSON(b, &res); err != nil {
|
|
return err
|
|
}
|
|
*m = res
|
|
return nil
|
|
}
|