peridot/vendor/github.com/ory/hydra-client-go/v2/model_pagination_headers.go
Mustafa Gezen ad0f7a5305
Major upgrades
Upgrade to Go 1.20.5, Hydra v2 SDK, rules-go v0.44.2 (with proper resolves), protobuf v25.3 and mass upgrade of Go dependencies.
2024-03-17 08:06:08 +01:00

196 lines
5.0 KiB
Go

/*
Ory Hydra API
Documentation for all of Ory Hydra's APIs.
API version: v2.2.0
Contact: hi@ory.sh
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package client
import (
"encoding/json"
)
// checks if the PaginationHeaders type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &PaginationHeaders{}
// PaginationHeaders struct for PaginationHeaders
type PaginationHeaders struct {
// The link header contains pagination links. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). in: header
Link *string `json:"link,omitempty"`
// The total number of clients. in: header
XTotalCount *string `json:"x-total-count,omitempty"`
AdditionalProperties map[string]interface{}
}
type _PaginationHeaders PaginationHeaders
// NewPaginationHeaders instantiates a new PaginationHeaders object
// This constructor will assign default values to properties that have it defined,
// and makes sure properties required by API are set, but the set of arguments
// will change when the set of required properties is changed
func NewPaginationHeaders() *PaginationHeaders {
this := PaginationHeaders{}
return &this
}
// NewPaginationHeadersWithDefaults instantiates a new PaginationHeaders object
// This constructor will only assign default values to properties that have it defined,
// but it doesn't guarantee that properties required by API are set
func NewPaginationHeadersWithDefaults() *PaginationHeaders {
this := PaginationHeaders{}
return &this
}
// GetLink returns the Link field value if set, zero value otherwise.
func (o *PaginationHeaders) GetLink() string {
if o == nil || IsNil(o.Link) {
var ret string
return ret
}
return *o.Link
}
// GetLinkOk returns a tuple with the Link field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PaginationHeaders) GetLinkOk() (*string, bool) {
if o == nil || IsNil(o.Link) {
return nil, false
}
return o.Link, true
}
// HasLink returns a boolean if a field has been set.
func (o *PaginationHeaders) HasLink() bool {
if o != nil && !IsNil(o.Link) {
return true
}
return false
}
// SetLink gets a reference to the given string and assigns it to the Link field.
func (o *PaginationHeaders) SetLink(v string) {
o.Link = &v
}
// GetXTotalCount returns the XTotalCount field value if set, zero value otherwise.
func (o *PaginationHeaders) GetXTotalCount() string {
if o == nil || IsNil(o.XTotalCount) {
var ret string
return ret
}
return *o.XTotalCount
}
// GetXTotalCountOk returns a tuple with the XTotalCount field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *PaginationHeaders) GetXTotalCountOk() (*string, bool) {
if o == nil || IsNil(o.XTotalCount) {
return nil, false
}
return o.XTotalCount, true
}
// HasXTotalCount returns a boolean if a field has been set.
func (o *PaginationHeaders) HasXTotalCount() bool {
if o != nil && !IsNil(o.XTotalCount) {
return true
}
return false
}
// SetXTotalCount gets a reference to the given string and assigns it to the XTotalCount field.
func (o *PaginationHeaders) SetXTotalCount(v string) {
o.XTotalCount = &v
}
func (o PaginationHeaders) MarshalJSON() ([]byte, error) {
toSerialize,err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o PaginationHeaders) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
if !IsNil(o.Link) {
toSerialize["link"] = o.Link
}
if !IsNil(o.XTotalCount) {
toSerialize["x-total-count"] = o.XTotalCount
}
for key, value := range o.AdditionalProperties {
toSerialize[key] = value
}
return toSerialize, nil
}
func (o *PaginationHeaders) UnmarshalJSON(bytes []byte) (err error) {
varPaginationHeaders := _PaginationHeaders{}
err = json.Unmarshal(bytes, &varPaginationHeaders)
if err != nil {
return err
}
*o = PaginationHeaders(varPaginationHeaders)
additionalProperties := make(map[string]interface{})
if err = json.Unmarshal(bytes, &additionalProperties); err == nil {
delete(additionalProperties, "link")
delete(additionalProperties, "x-total-count")
o.AdditionalProperties = additionalProperties
}
return err
}
type NullablePaginationHeaders struct {
value *PaginationHeaders
isSet bool
}
func (v NullablePaginationHeaders) Get() *PaginationHeaders {
return v.value
}
func (v *NullablePaginationHeaders) Set(val *PaginationHeaders) {
v.value = val
v.isSet = true
}
func (v NullablePaginationHeaders) IsSet() bool {
return v.isSet
}
func (v *NullablePaginationHeaders) Unset() {
v.value = nil
v.isSet = false
}
func NewNullablePaginationHeaders(val *PaginationHeaders) *NullablePaginationHeaders {
return &NullablePaginationHeaders{value: val, isSet: true}
}
func (v NullablePaginationHeaders) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullablePaginationHeaders) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}