@@ -363,13 +363,13 @@ def _get_group_notes_get_serialize(
363363 def get_groups_get (
364364 self ,
365365 property_id : Annotated [StrictStr , Field (description = "Property ID" )],
366- group_code : Annotated [StrictStr , Field (description = "Unique ID for a group" )],
367- type : Annotated [StrictStr , Field (description = "The type of group" )],
368- status : Annotated [StrictStr , Field (description = "Group status" )],
369- created_from : Annotated [datetime , Field (description = "Datetime (lower limit) to be queried" )],
370- created_to : Annotated [datetime , Field (description = "Datetime (upper limit) to be queried" )],
371- page_size : Annotated [StrictInt , Field (description = "Number of groups to return per page (min: 1, max: 100)" )],
372- page_number : Annotated [StrictInt , Field (description = "Which page in the results to access" )],
366+ group_code : Annotated [Optional [ StrictStr ] , Field (description = "Unique ID for a group" )] = None ,
367+ type : Annotated [Optional [ StrictStr ] , Field (description = "The type of group" )] = None ,
368+ status : Annotated [Optional [ StrictStr ] , Field (description = "Group status" )] = None ,
369+ created_from : Annotated [Optional [ datetime ] , Field (description = "Datetime (lower limit) to be queried" )] = None ,
370+ created_to : Annotated [Optional [ datetime ] , Field (description = "Datetime (upper limit) to be queried" )] = None ,
371+ page_size : Annotated [Optional [ StrictInt ] , Field (description = "Number of groups to return per page (min: 1, max: 100)" )] = None ,
372+ page_number : Annotated [Optional [ StrictInt ] , Field (description = "Which page in the results to access" )] = None ,
373373 _request_timeout : Union [
374374 None ,
375375 Annotated [StrictFloat , Field (gt = 0 )],
@@ -385,23 +385,23 @@ def get_groups_get(
385385 ) -> GetGroupsResponse :
386386 """getGroups
387387
388- Returns groups of allotment block
388+ Returns the groups for a property
389389
390390 :param property_id: Property ID (required)
391391 :type property_id: str
392- :param group_code: Unique ID for a group (required)
392+ :param group_code: Unique ID for a group
393393 :type group_code: str
394- :param type: The type of group (required)
394+ :param type: The type of group
395395 :type type: str
396- :param status: Group status (required)
396+ :param status: Group status
397397 :type status: str
398- :param created_from: Datetime (lower limit) to be queried (required)
398+ :param created_from: Datetime (lower limit) to be queried
399399 :type created_from: datetime
400- :param created_to: Datetime (upper limit) to be queried (required)
400+ :param created_to: Datetime (upper limit) to be queried
401401 :type created_to: datetime
402- :param page_size: Number of groups to return per page (min: 1, max: 100) (required)
402+ :param page_size: Number of groups to return per page (min: 1, max: 100)
403403 :type page_size: int
404- :param page_number: Which page in the results to access (required)
404+ :param page_number: Which page in the results to access
405405 :type page_number: int
406406 :param _request_timeout: timeout setting for this request. If one
407407 number provided, it will be total request
@@ -458,13 +458,13 @@ def get_groups_get(
458458 def get_groups_get_with_http_info (
459459 self ,
460460 property_id : Annotated [StrictStr , Field (description = "Property ID" )],
461- group_code : Annotated [StrictStr , Field (description = "Unique ID for a group" )],
462- type : Annotated [StrictStr , Field (description = "The type of group" )],
463- status : Annotated [StrictStr , Field (description = "Group status" )],
464- created_from : Annotated [datetime , Field (description = "Datetime (lower limit) to be queried" )],
465- created_to : Annotated [datetime , Field (description = "Datetime (upper limit) to be queried" )],
466- page_size : Annotated [StrictInt , Field (description = "Number of groups to return per page (min: 1, max: 100)" )],
467- page_number : Annotated [StrictInt , Field (description = "Which page in the results to access" )],
461+ group_code : Annotated [Optional [ StrictStr ] , Field (description = "Unique ID for a group" )] = None ,
462+ type : Annotated [Optional [ StrictStr ] , Field (description = "The type of group" )] = None ,
463+ status : Annotated [Optional [ StrictStr ] , Field (description = "Group status" )] = None ,
464+ created_from : Annotated [Optional [ datetime ] , Field (description = "Datetime (lower limit) to be queried" )] = None ,
465+ created_to : Annotated [Optional [ datetime ] , Field (description = "Datetime (upper limit) to be queried" )] = None ,
466+ page_size : Annotated [Optional [ StrictInt ] , Field (description = "Number of groups to return per page (min: 1, max: 100)" )] = None ,
467+ page_number : Annotated [Optional [ StrictInt ] , Field (description = "Which page in the results to access" )] = None ,
468468 _request_timeout : Union [
469469 None ,
470470 Annotated [StrictFloat , Field (gt = 0 )],
@@ -480,23 +480,23 @@ def get_groups_get_with_http_info(
480480 ) -> ApiResponse [GetGroupsResponse ]:
481481 """getGroups
482482
483- Returns groups of allotment block
483+ Returns the groups for a property
484484
485485 :param property_id: Property ID (required)
486486 :type property_id: str
487- :param group_code: Unique ID for a group (required)
487+ :param group_code: Unique ID for a group
488488 :type group_code: str
489- :param type: The type of group (required)
489+ :param type: The type of group
490490 :type type: str
491- :param status: Group status (required)
491+ :param status: Group status
492492 :type status: str
493- :param created_from: Datetime (lower limit) to be queried (required)
493+ :param created_from: Datetime (lower limit) to be queried
494494 :type created_from: datetime
495- :param created_to: Datetime (upper limit) to be queried (required)
495+ :param created_to: Datetime (upper limit) to be queried
496496 :type created_to: datetime
497- :param page_size: Number of groups to return per page (min: 1, max: 100) (required)
497+ :param page_size: Number of groups to return per page (min: 1, max: 100)
498498 :type page_size: int
499- :param page_number: Which page in the results to access (required)
499+ :param page_number: Which page in the results to access
500500 :type page_number: int
501501 :param _request_timeout: timeout setting for this request. If one
502502 number provided, it will be total request
@@ -553,13 +553,13 @@ def get_groups_get_with_http_info(
553553 def get_groups_get_without_preload_content (
554554 self ,
555555 property_id : Annotated [StrictStr , Field (description = "Property ID" )],
556- group_code : Annotated [StrictStr , Field (description = "Unique ID for a group" )],
557- type : Annotated [StrictStr , Field (description = "The type of group" )],
558- status : Annotated [StrictStr , Field (description = "Group status" )],
559- created_from : Annotated [datetime , Field (description = "Datetime (lower limit) to be queried" )],
560- created_to : Annotated [datetime , Field (description = "Datetime (upper limit) to be queried" )],
561- page_size : Annotated [StrictInt , Field (description = "Number of groups to return per page (min: 1, max: 100)" )],
562- page_number : Annotated [StrictInt , Field (description = "Which page in the results to access" )],
556+ group_code : Annotated [Optional [ StrictStr ] , Field (description = "Unique ID for a group" )] = None ,
557+ type : Annotated [Optional [ StrictStr ] , Field (description = "The type of group" )] = None ,
558+ status : Annotated [Optional [ StrictStr ] , Field (description = "Group status" )] = None ,
559+ created_from : Annotated [Optional [ datetime ] , Field (description = "Datetime (lower limit) to be queried" )] = None ,
560+ created_to : Annotated [Optional [ datetime ] , Field (description = "Datetime (upper limit) to be queried" )] = None ,
561+ page_size : Annotated [Optional [ StrictInt ] , Field (description = "Number of groups to return per page (min: 1, max: 100)" )] = None ,
562+ page_number : Annotated [Optional [ StrictInt ] , Field (description = "Which page in the results to access" )] = None ,
563563 _request_timeout : Union [
564564 None ,
565565 Annotated [StrictFloat , Field (gt = 0 )],
@@ -575,23 +575,23 @@ def get_groups_get_without_preload_content(
575575 ) -> RESTResponseType :
576576 """getGroups
577577
578- Returns groups of allotment block
578+ Returns the groups for a property
579579
580580 :param property_id: Property ID (required)
581581 :type property_id: str
582- :param group_code: Unique ID for a group (required)
582+ :param group_code: Unique ID for a group
583583 :type group_code: str
584- :param type: The type of group (required)
584+ :param type: The type of group
585585 :type type: str
586- :param status: Group status (required)
586+ :param status: Group status
587587 :type status: str
588- :param created_from: Datetime (lower limit) to be queried (required)
588+ :param created_from: Datetime (lower limit) to be queried
589589 :type created_from: datetime
590- :param created_to: Datetime (upper limit) to be queried (required)
590+ :param created_to: Datetime (upper limit) to be queried
591591 :type created_to: datetime
592- :param page_size: Number of groups to return per page (min: 1, max: 100) (required)
592+ :param page_size: Number of groups to return per page (min: 1, max: 100)
593593 :type page_size: int
594- :param page_number: Which page in the results to access (required)
594+ :param page_number: Which page in the results to access
595595 :type page_number: int
596596 :param _request_timeout: timeout setting for this request. If one
597597 number provided, it will be total request
0 commit comments