// 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" ) // CommonJSONBlobReadResult common JSON blob read result // // swagger:model common.JSONBlobReadResult type CommonJSONBlobReadResult struct { // blob size BlobSize int64 `json:"blobSize,omitempty"` // bytes read BytesRead int64 `json:"bytesRead,omitempty"` // data Data interface{} `json:"data,omitempty"` // real offset RealOffset int64 `json:"realOffset,omitempty"` } // Validate validates this common JSON blob read result func (m *CommonJSONBlobReadResult) Validate(formats strfmt.Registry) error { return nil } // ContextValidate validates this common JSON blob read result based on context it is used func (m *CommonJSONBlobReadResult) ContextValidate(ctx context.Context, formats strfmt.Registry) error { return nil } // MarshalBinary interface implementation func (m *CommonJSONBlobReadResult) MarshalBinary() ([]byte, error) { if m == nil { return nil, nil } return swag.WriteJSON(m) } // UnmarshalBinary interface implementation func (m *CommonJSONBlobReadResult) UnmarshalBinary(b []byte) error { var res CommonJSONBlobReadResult if err := swag.ReadJSON(b, &res); err != nil { return err } *m = res return nil }