Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type PaginationMetaDto ¶
type PaginationMetaDto struct {
// Current page number
CurrentPage float64 `json:"currentPage" api:"required"`
// Total number of pages
PageCount float64 `json:"pageCount" api:"required"`
// Items per page
PerPage float64 `json:"perPage" api:"required"`
// Total number of records
Total float64 `json:"total" api:"required"`
// JSON contains metadata for fields, check presence with [respjson.Field.Valid].
JSON struct {
CurrentPage respjson.Field
PageCount respjson.Field
PerPage respjson.Field
Total respjson.Field
ExtraFields map[string]respjson.Field
// contains filtered or unexported fields
} `json:"-"`
}
func (PaginationMetaDto) RawJSON ¶
func (r PaginationMetaDto) RawJSON() string
Returns the unmodified JSON received from the API
func (*PaginationMetaDto) UnmarshalJSON ¶
func (r *PaginationMetaDto) UnmarshalJSON(data []byte) error
Click to show internal directories.
Click to hide internal directories.