Skip to content

Commit

Permalink
Add ActionPayload class
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeusina committed Aug 13, 2023
1 parent 15322aa commit b9afc3d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions petersbugredu_wrap/types/action_payload.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
class ActionPayload:
def __init__(self, can_apply_for_distance: bool, can_print=None):
"""
Class represents action payload API class
:param can_apply_for_distance:
:param can_print:
"""
self.can_apply_for_distance = can_apply_for_distance
self.can_print = can_print

0 comments on commit b9afc3d

Please sign in to comment.