Documentation
¶
Overview ¶
Package issue936 provides primitives to interact with the openapi HTTP API.
Code generated by github.com/jKiler/oapi-codegen version v1.0.0-00010101000000-000000000000 DO NOT EDIT.
Index ¶
- type FilterPredicate
- func (t FilterPredicate) AsFilterPredicate1() (FilterPredicate1, error)
- func (t FilterPredicate) AsFilterPredicateOp() (FilterPredicateOp, error)
- func (t FilterPredicate) AsFilterPredicateRangeOp() (FilterPredicateRangeOp, error)
- func (t FilterPredicate) AsFilterValue() (FilterValue, error)
- func (t *FilterPredicate) FromFilterPredicate1(v FilterPredicate1) error
- func (t *FilterPredicate) FromFilterPredicateOp(v FilterPredicateOp) error
- func (t *FilterPredicate) FromFilterPredicateRangeOp(v FilterPredicateRangeOp) error
- func (t *FilterPredicate) FromFilterValue(v FilterValue) error
- func (t FilterPredicate) MarshalJSON() ([]byte, error)
- func (t *FilterPredicate) MergeFilterPredicate1(v FilterPredicate1) error
- func (t *FilterPredicate) MergeFilterPredicateOp(v FilterPredicateOp) error
- func (t *FilterPredicate) MergeFilterPredicateRangeOp(v FilterPredicateRangeOp) error
- func (t *FilterPredicate) MergeFilterValue(v FilterValue) error
- func (t *FilterPredicate) UnmarshalJSON(b []byte) error
- type FilterPredicate1
- type FilterPredicateOp
- type FilterPredicateOpAny0
- type FilterPredicateOpNone1
- type FilterPredicateOp_Any
- func (t FilterPredicateOp_Any) AsFilterPredicateOpAny0() (FilterPredicateOpAny0, error)
- func (t *FilterPredicateOp_Any) FromFilterPredicateOpAny0(v FilterPredicateOpAny0) error
- func (t FilterPredicateOp_Any) MarshalJSON() ([]byte, error)
- func (t *FilterPredicateOp_Any) MergeFilterPredicateOpAny0(v FilterPredicateOpAny0) error
- func (t *FilterPredicateOp_Any) UnmarshalJSON(b []byte) error
- type FilterPredicateOp_None
- func (t FilterPredicateOp_None) AsFilterPredicate() (FilterPredicate, error)
- func (t FilterPredicateOp_None) AsFilterPredicateOpNone1() (FilterPredicateOpNone1, error)
- func (t *FilterPredicateOp_None) FromFilterPredicate(v FilterPredicate) error
- func (t *FilterPredicateOp_None) FromFilterPredicateOpNone1(v FilterPredicateOpNone1) error
- func (t FilterPredicateOp_None) MarshalJSON() ([]byte, error)
- func (t *FilterPredicateOp_None) MergeFilterPredicate(v FilterPredicate) error
- func (t *FilterPredicateOp_None) MergeFilterPredicateOpNone1(v FilterPredicateOpNone1) error
- func (t *FilterPredicateOp_None) UnmarshalJSON(b []byte) error
- type FilterPredicateRangeOp
- type FilterRangeValue
- func (t FilterRangeValue) AsFilterRangeValue0() (FilterRangeValue0, error)
- func (t FilterRangeValue) AsFilterRangeValue1() (FilterRangeValue1, error)
- func (t *FilterRangeValue) FromFilterRangeValue0(v FilterRangeValue0) error
- func (t *FilterRangeValue) FromFilterRangeValue1(v FilterRangeValue1) error
- func (t FilterRangeValue) MarshalJSON() ([]byte, error)
- func (t *FilterRangeValue) MergeFilterRangeValue0(v FilterRangeValue0) error
- func (t *FilterRangeValue) MergeFilterRangeValue1(v FilterRangeValue1) error
- func (t *FilterRangeValue) UnmarshalJSON(b []byte) error
- type FilterRangeValue0
- type FilterRangeValue1
- type FilterValue
- func (t FilterValue) AsFilterValue0() (FilterValue0, error)
- func (t FilterValue) AsFilterValue1() (FilterValue1, error)
- func (t FilterValue) AsFilterValue2() (FilterValue2, error)
- func (t *FilterValue) FromFilterValue0(v FilterValue0) error
- func (t *FilterValue) FromFilterValue1(v FilterValue1) error
- func (t *FilterValue) FromFilterValue2(v FilterValue2) error
- func (t FilterValue) MarshalJSON() ([]byte, error)
- func (t *FilterValue) MergeFilterValue0(v FilterValue0) error
- func (t *FilterValue) MergeFilterValue1(v FilterValue1) error
- func (t *FilterValue) MergeFilterValue2(v FilterValue2) error
- func (t *FilterValue) UnmarshalJSON(b []byte) error
- type FilterValue0
- type FilterValue1
- type FilterValue2
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type FilterPredicate ¶
type FilterPredicate struct {
// contains filtered or unexported fields
}
FilterPredicate defines model for FilterPredicate.
func (FilterPredicate) AsFilterPredicate1 ¶
func (t FilterPredicate) AsFilterPredicate1() (FilterPredicate1, error)
AsFilterPredicate1 returns the union data inside the FilterPredicate as a FilterPredicate1
func (FilterPredicate) AsFilterPredicateOp ¶
func (t FilterPredicate) AsFilterPredicateOp() (FilterPredicateOp, error)
AsFilterPredicateOp returns the union data inside the FilterPredicate as a FilterPredicateOp
func (FilterPredicate) AsFilterPredicateRangeOp ¶
func (t FilterPredicate) AsFilterPredicateRangeOp() (FilterPredicateRangeOp, error)
AsFilterPredicateRangeOp returns the union data inside the FilterPredicate as a FilterPredicateRangeOp
func (FilterPredicate) AsFilterValue ¶
func (t FilterPredicate) AsFilterValue() (FilterValue, error)
AsFilterValue returns the union data inside the FilterPredicate as a FilterValue
func (*FilterPredicate) FromFilterPredicate1 ¶
func (t *FilterPredicate) FromFilterPredicate1(v FilterPredicate1) error
FromFilterPredicate1 overwrites any union data inside the FilterPredicate as the provided FilterPredicate1
func (*FilterPredicate) FromFilterPredicateOp ¶
func (t *FilterPredicate) FromFilterPredicateOp(v FilterPredicateOp) error
FromFilterPredicateOp overwrites any union data inside the FilterPredicate as the provided FilterPredicateOp
func (*FilterPredicate) FromFilterPredicateRangeOp ¶
func (t *FilterPredicate) FromFilterPredicateRangeOp(v FilterPredicateRangeOp) error
FromFilterPredicateRangeOp overwrites any union data inside the FilterPredicate as the provided FilterPredicateRangeOp
func (*FilterPredicate) FromFilterValue ¶
func (t *FilterPredicate) FromFilterValue(v FilterValue) error
FromFilterValue overwrites any union data inside the FilterPredicate as the provided FilterValue
func (FilterPredicate) MarshalJSON ¶
func (t FilterPredicate) MarshalJSON() ([]byte, error)
func (*FilterPredicate) MergeFilterPredicate1 ¶
func (t *FilterPredicate) MergeFilterPredicate1(v FilterPredicate1) error
MergeFilterPredicate1 performs a merge with any union data inside the FilterPredicate, using the provided FilterPredicate1
func (*FilterPredicate) MergeFilterPredicateOp ¶
func (t *FilterPredicate) MergeFilterPredicateOp(v FilterPredicateOp) error
MergeFilterPredicateOp performs a merge with any union data inside the FilterPredicate, using the provided FilterPredicateOp
func (*FilterPredicate) MergeFilterPredicateRangeOp ¶
func (t *FilterPredicate) MergeFilterPredicateRangeOp(v FilterPredicateRangeOp) error
MergeFilterPredicateRangeOp performs a merge with any union data inside the FilterPredicate, using the provided FilterPredicateRangeOp
func (*FilterPredicate) MergeFilterValue ¶
func (t *FilterPredicate) MergeFilterValue(v FilterValue) error
MergeFilterValue performs a merge with any union data inside the FilterPredicate, using the provided FilterValue
func (*FilterPredicate) UnmarshalJSON ¶
func (t *FilterPredicate) UnmarshalJSON(b []byte) error
type FilterPredicate1 ¶
type FilterPredicate1 = []FilterPredicate
FilterPredicate1 defines model for .
type FilterPredicateOp ¶
type FilterPredicateOp struct {
Any *FilterPredicateOp_Any `json:"$any,omitempty"`
None *FilterPredicateOp_None `json:"$none,omitempty"`
}
FilterPredicateOp defines model for FilterPredicateOp.
type FilterPredicateOpAny0 ¶
type FilterPredicateOpAny0 = []FilterPredicate
FilterPredicateOpAny0 defines model for .
type FilterPredicateOpNone1 ¶
type FilterPredicateOpNone1 = []FilterPredicate
FilterPredicateOpNone1 defines model for .
type FilterPredicateOp_Any ¶
type FilterPredicateOp_Any struct {
// contains filtered or unexported fields
}
FilterPredicateOp_Any defines model for FilterPredicateOp.Any.
func (FilterPredicateOp_Any) AsFilterPredicateOpAny0 ¶
func (t FilterPredicateOp_Any) AsFilterPredicateOpAny0() (FilterPredicateOpAny0, error)
AsFilterPredicateOpAny0 returns the union data inside the FilterPredicateOp_Any as a FilterPredicateOpAny0
func (*FilterPredicateOp_Any) FromFilterPredicateOpAny0 ¶
func (t *FilterPredicateOp_Any) FromFilterPredicateOpAny0(v FilterPredicateOpAny0) error
FromFilterPredicateOpAny0 overwrites any union data inside the FilterPredicateOp_Any as the provided FilterPredicateOpAny0
func (FilterPredicateOp_Any) MarshalJSON ¶
func (t FilterPredicateOp_Any) MarshalJSON() ([]byte, error)
func (*FilterPredicateOp_Any) MergeFilterPredicateOpAny0 ¶
func (t *FilterPredicateOp_Any) MergeFilterPredicateOpAny0(v FilterPredicateOpAny0) error
MergeFilterPredicateOpAny0 performs a merge with any union data inside the FilterPredicateOp_Any, using the provided FilterPredicateOpAny0
func (*FilterPredicateOp_Any) UnmarshalJSON ¶
func (t *FilterPredicateOp_Any) UnmarshalJSON(b []byte) error
type FilterPredicateOp_None ¶
type FilterPredicateOp_None struct {
// contains filtered or unexported fields
}
FilterPredicateOp_None defines model for FilterPredicateOp.None.
func (FilterPredicateOp_None) AsFilterPredicate ¶
func (t FilterPredicateOp_None) AsFilterPredicate() (FilterPredicate, error)
AsFilterPredicate returns the union data inside the FilterPredicateOp_None as a FilterPredicate
func (FilterPredicateOp_None) AsFilterPredicateOpNone1 ¶
func (t FilterPredicateOp_None) AsFilterPredicateOpNone1() (FilterPredicateOpNone1, error)
AsFilterPredicateOpNone1 returns the union data inside the FilterPredicateOp_None as a FilterPredicateOpNone1
func (*FilterPredicateOp_None) FromFilterPredicate ¶
func (t *FilterPredicateOp_None) FromFilterPredicate(v FilterPredicate) error
FromFilterPredicate overwrites any union data inside the FilterPredicateOp_None as the provided FilterPredicate
func (*FilterPredicateOp_None) FromFilterPredicateOpNone1 ¶
func (t *FilterPredicateOp_None) FromFilterPredicateOpNone1(v FilterPredicateOpNone1) error
FromFilterPredicateOpNone1 overwrites any union data inside the FilterPredicateOp_None as the provided FilterPredicateOpNone1
func (FilterPredicateOp_None) MarshalJSON ¶
func (t FilterPredicateOp_None) MarshalJSON() ([]byte, error)
func (*FilterPredicateOp_None) MergeFilterPredicate ¶
func (t *FilterPredicateOp_None) MergeFilterPredicate(v FilterPredicate) error
MergeFilterPredicate performs a merge with any union data inside the FilterPredicateOp_None, using the provided FilterPredicate
func (*FilterPredicateOp_None) MergeFilterPredicateOpNone1 ¶
func (t *FilterPredicateOp_None) MergeFilterPredicateOpNone1(v FilterPredicateOpNone1) error
MergeFilterPredicateOpNone1 performs a merge with any union data inside the FilterPredicateOp_None, using the provided FilterPredicateOpNone1
func (*FilterPredicateOp_None) UnmarshalJSON ¶
func (t *FilterPredicateOp_None) UnmarshalJSON(b []byte) error
type FilterPredicateRangeOp ¶
type FilterPredicateRangeOp struct {
Lt *FilterRangeValue `json:"$lt,omitempty"`
}
FilterPredicateRangeOp defines model for FilterPredicateRangeOp.
type FilterRangeValue ¶
type FilterRangeValue struct {
// contains filtered or unexported fields
}
FilterRangeValue defines model for FilterRangeValue.
func (FilterRangeValue) AsFilterRangeValue0 ¶
func (t FilterRangeValue) AsFilterRangeValue0() (FilterRangeValue0, error)
AsFilterRangeValue0 returns the union data inside the FilterRangeValue as a FilterRangeValue0
func (FilterRangeValue) AsFilterRangeValue1 ¶
func (t FilterRangeValue) AsFilterRangeValue1() (FilterRangeValue1, error)
AsFilterRangeValue1 returns the union data inside the FilterRangeValue as a FilterRangeValue1
func (*FilterRangeValue) FromFilterRangeValue0 ¶
func (t *FilterRangeValue) FromFilterRangeValue0(v FilterRangeValue0) error
FromFilterRangeValue0 overwrites any union data inside the FilterRangeValue as the provided FilterRangeValue0
func (*FilterRangeValue) FromFilterRangeValue1 ¶
func (t *FilterRangeValue) FromFilterRangeValue1(v FilterRangeValue1) error
FromFilterRangeValue1 overwrites any union data inside the FilterRangeValue as the provided FilterRangeValue1
func (FilterRangeValue) MarshalJSON ¶
func (t FilterRangeValue) MarshalJSON() ([]byte, error)
func (*FilterRangeValue) MergeFilterRangeValue0 ¶
func (t *FilterRangeValue) MergeFilterRangeValue0(v FilterRangeValue0) error
MergeFilterRangeValue0 performs a merge with any union data inside the FilterRangeValue, using the provided FilterRangeValue0
func (*FilterRangeValue) MergeFilterRangeValue1 ¶
func (t *FilterRangeValue) MergeFilterRangeValue1(v FilterRangeValue1) error
MergeFilterRangeValue1 performs a merge with any union data inside the FilterRangeValue, using the provided FilterRangeValue1
func (*FilterRangeValue) UnmarshalJSON ¶
func (t *FilterRangeValue) UnmarshalJSON(b []byte) error
type FilterValue ¶
type FilterValue struct {
// contains filtered or unexported fields
}
FilterValue defines model for FilterValue.
func (FilterValue) AsFilterValue0 ¶
func (t FilterValue) AsFilterValue0() (FilterValue0, error)
AsFilterValue0 returns the union data inside the FilterValue as a FilterValue0
func (FilterValue) AsFilterValue1 ¶
func (t FilterValue) AsFilterValue1() (FilterValue1, error)
AsFilterValue1 returns the union data inside the FilterValue as a FilterValue1
func (FilterValue) AsFilterValue2 ¶
func (t FilterValue) AsFilterValue2() (FilterValue2, error)
AsFilterValue2 returns the union data inside the FilterValue as a FilterValue2
func (*FilterValue) FromFilterValue0 ¶
func (t *FilterValue) FromFilterValue0(v FilterValue0) error
FromFilterValue0 overwrites any union data inside the FilterValue as the provided FilterValue0
func (*FilterValue) FromFilterValue1 ¶
func (t *FilterValue) FromFilterValue1(v FilterValue1) error
FromFilterValue1 overwrites any union data inside the FilterValue as the provided FilterValue1
func (*FilterValue) FromFilterValue2 ¶
func (t *FilterValue) FromFilterValue2(v FilterValue2) error
FromFilterValue2 overwrites any union data inside the FilterValue as the provided FilterValue2
func (FilterValue) MarshalJSON ¶
func (t FilterValue) MarshalJSON() ([]byte, error)
func (*FilterValue) MergeFilterValue0 ¶
func (t *FilterValue) MergeFilterValue0(v FilterValue0) error
MergeFilterValue0 performs a merge with any union data inside the FilterValue, using the provided FilterValue0
func (*FilterValue) MergeFilterValue1 ¶
func (t *FilterValue) MergeFilterValue1(v FilterValue1) error
MergeFilterValue1 performs a merge with any union data inside the FilterValue, using the provided FilterValue1
func (*FilterValue) MergeFilterValue2 ¶
func (t *FilterValue) MergeFilterValue2(v FilterValue2) error
MergeFilterValue2 performs a merge with any union data inside the FilterValue, using the provided FilterValue2
func (*FilterValue) UnmarshalJSON ¶
func (t *FilterValue) UnmarshalJSON(b []byte) error