Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PIM Client Php
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lib
PIM Client Php
Commits
10667a2c
Commit
10667a2c
authored
1 year ago
by
n.fihter@iqdev.digital
Browse files
Options
Downloads
Patches
Plain Diff
task_83453 | Refinement of properties for the filter
parent
afb25ed6
No related branches found
No related tags found
1 merge request
!2
task_83453 | Refinement of properties for the filter
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/Dto/BindCategoryPropertiesRequestProperties.php
+36
-5
36 additions, 5 deletions
lib/Dto/BindCategoryPropertiesRequestProperties.php
with
36 additions
and
5 deletions
lib/Dto/BindCategoryPropertiesRequestProperties.php
+
36
−
5
View file @
10667a2c
...
...
@@ -59,6 +59,7 @@ class BindCategoryPropertiesRequestProperties implements ModelInterface, ArrayAc
protected
static
$openAPITypes
=
[
'id'
=>
'int'
,
'is_required'
=>
'bool'
,
'sort'
=>
'integer'
,
];
/**
...
...
@@ -68,7 +69,8 @@ class BindCategoryPropertiesRequestProperties implements ModelInterface, ArrayAc
*/
protected
static
$openAPIFormats
=
[
'id'
=>
null
,
'is_required'
=>
null
'is_required'
=>
null
,
'sort'
=>
null
,
];
/**
...
...
@@ -78,7 +80,8 @@ class BindCategoryPropertiesRequestProperties implements ModelInterface, ArrayAc
*/
protected
static
$openAPINullables
=
[
'id'
=>
false
,
'is_required'
=>
false
'is_required'
=>
false
,
'sort'
=>
true
,
];
/**
...
...
@@ -169,7 +172,8 @@ class BindCategoryPropertiesRequestProperties implements ModelInterface, ArrayAc
*/
protected
static
$attributeMap
=
[
'id'
=>
'id'
,
'is_required'
=>
'is_required'
'is_required'
=>
'is_required'
,
'sort'
=>
'sort'
,
];
/**
...
...
@@ -179,7 +183,8 @@ class BindCategoryPropertiesRequestProperties implements ModelInterface, ArrayAc
*/
protected
static
$setters
=
[
'id'
=>
'setId'
,
'is_required'
=>
'setIsRequired'
'is_required'
=>
'setIsRequired'
,
'sort'
=>
'setSort'
,
];
/**
...
...
@@ -189,7 +194,8 @@ class BindCategoryPropertiesRequestProperties implements ModelInterface, ArrayAc
*/
protected
static
$getters
=
[
'id'
=>
'getId'
,
'is_required'
=>
'getIsRequired'
'is_required'
=>
'getIsRequired'
,
'sort'
=>
'getSort'
,
];
/**
...
...
@@ -290,6 +296,31 @@ class BindCategoryPropertiesRequestProperties implements ModelInterface, ArrayAc
return
count
(
$this
->
listInvalidProperties
())
===
0
;
}
/**
* Gets sort
*
* @return int|null
*/
public
function
getSort
():
?int
{
return
$this
->
container
[
'sort'
];
}
/**
* Sets Sort
*
* @param int|null $sort
*
* @return $this
*/
public
function
setSort
(
$sort
)
{
$this
->
container
[
'sort'
]
=
$sort
;
return
$this
;
}
/**
* Gets id
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment