File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -435,6 +435,9 @@ def get_annotations(
435435 specification = None ,
436436 from_date = None ,
437437 to_date = None ,
438+ last_updated_from = None ,
439+ last_updated_to = None ,
440+ state = None ,
438441 endpoint = None ,
439442 rec_limit = None ,
440443 company_id = None ,
@@ -453,6 +456,9 @@ def get_annotations(
453456 specification = specification ,
454457 from_date = from_date ,
455458 to_date = to_date ,
459+ last_updated_from = last_updated_from ,
460+ last_updated_to = last_updated_to ,
461+ state = state ,
456462 endpoint = endpoint ,
457463 company_id = company_id ,
458464 ):
@@ -467,6 +473,9 @@ def _get_annotations(
467473 specification = None ,
468474 from_date = None ,
469475 to_date = None ,
476+ last_updated_from = None ,
477+ last_updated_to = None ,
478+ state = None ,
470479 endpoint = None ,
471480 company_id = None ,
472481 offset = 0 ,
@@ -485,6 +494,12 @@ def _get_annotations(
485494 filters .append ("fromDate=" + from_date )
486495 if to_date is not None :
487496 filters .append ("toDate=" + to_date )
497+ if last_updated_from is not None :
498+ filters .append ("lastUpdatedFrom=" + last_updated_from )
499+ if last_updated_to is not None :
500+ filters .append ("lastUpdatedTo=" + last_updated_to )
501+ if state is not None :
502+ filters .append ("state=" + state )
488503 if company_id is not None :
489504 filters .append ("companyId=" + company_id )
490505
You can’t perform that action at this time.
0 commit comments