github.com/kaisawind/go-swagger@v0.19.0/examples/stream-server/models/mark.go (about)

     1  // Code generated by go-swagger; DO NOT EDIT.
     2  
     3  package models
     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  // Mark mark
    17  // swagger:model Mark
    18  type Mark struct {
    19  
    20  	// remains
    21  	// Required: true
    22  	Remains *int64 `json:"remains"`
    23  }
    24  
    25  // Validate validates this mark
    26  func (m *Mark) Validate(formats strfmt.Registry) error {
    27  	var res []error
    28  
    29  	if err := m.validateRemains(formats); err != nil {
    30  		res = append(res, err)
    31  	}
    32  
    33  	if len(res) > 0 {
    34  		return errors.CompositeValidationError(res...)
    35  	}
    36  	return nil
    37  }
    38  
    39  func (m *Mark) validateRemains(formats strfmt.Registry) error {
    40  
    41  	if err := validate.Required("remains", "body", m.Remains); err != nil {
    42  		return err
    43  	}
    44  
    45  	return nil
    46  }
    47  
    48  // MarshalBinary interface implementation
    49  func (m *Mark) MarshalBinary() ([]byte, error) {
    50  	if m == nil {
    51  		return nil, nil
    52  	}
    53  	return swag.WriteJSON(m)
    54  }
    55  
    56  // UnmarshalBinary interface implementation
    57  func (m *Mark) UnmarshalBinary(b []byte) error {
    58  	var res Mark
    59  	if err := swag.ReadJSON(b, &res); err != nil {
    60  		return err
    61  	}
    62  	*m = res
    63  	return nil
    64  }