@@ -100,7 +100,8 @@ class Webhook(BaseModel):
100100 'remote_control' : 'WebhookRemoteControl' ,
101101 'velocity' : 'WebhookVelocity' ,
102102 'developer_tools' : 'WebhookDeveloperTools' ,
103- 'mitm_attack' : 'WebhookMitMAttack'
103+ 'mitm_attack' : 'WebhookMitMAttack' ,
104+ 'replayed' : 'bool'
104105 }
105106
106107 nullable_map = {
@@ -145,7 +146,8 @@ class Webhook(BaseModel):
145146 'remote_control' : False ,
146147 'velocity' : False ,
147148 'developer_tools' : False ,
148- 'mitm_attack' : False
149+ 'mitm_attack' : False ,
150+ 'replayed' : False
149151 }
150152
151153 attribute_map = {
@@ -190,10 +192,11 @@ class Webhook(BaseModel):
190192 'remote_control' : 'remoteControl' ,
191193 'velocity' : 'velocity' ,
192194 'developer_tools' : 'developerTools' ,
193- 'mitm_attack' : 'mitmAttack'
195+ 'mitm_attack' : 'mitmAttack' ,
196+ 'replayed' : 'replayed'
194197 }
195198
196- def __init__ (self , request_id = None , url = None , ip = None , environment_id = None , tag = None , time = None , timestamp = None , ip_location = None , linked_id = None , visitor_id = None , visitor_found = None , confidence = None , first_seen_at = None , last_seen_at = None , browser_details = None , incognito = None , client_referrer = None , components = None , bot = None , user_agent = None , root_apps = None , emulator = None , ip_info = None , ip_blocklist = None , tor = None , vpn = None , proxy = None , tampering = None , cloned_app = None , factory_reset = None , jailbroken = None , frida = None , privacy_settings = None , virtual_machine = None , raw_device_attributes = None , high_activity = None , location_spoofing = None , suspect_score = None , remote_control = None , velocity = None , developer_tools = None , mitm_attack = None ): # noqa: E501
199+ def __init__ (self , request_id = None , url = None , ip = None , environment_id = None , tag = None , time = None , timestamp = None , ip_location = None , linked_id = None , visitor_id = None , visitor_found = None , confidence = None , first_seen_at = None , last_seen_at = None , browser_details = None , incognito = None , client_referrer = None , components = None , bot = None , user_agent = None , root_apps = None , emulator = None , ip_info = None , ip_blocklist = None , tor = None , vpn = None , proxy = None , tampering = None , cloned_app = None , factory_reset = None , jailbroken = None , frida = None , privacy_settings = None , virtual_machine = None , raw_device_attributes = None , high_activity = None , location_spoofing = None , suspect_score = None , remote_control = None , velocity = None , developer_tools = None , mitm_attack = None , replayed = None ): # noqa: E501
197200 """Webhook - a model defined in Swagger""" # noqa: E501
198201 self ._request_id = None
199202 self ._url = None
@@ -237,6 +240,7 @@ def __init__(self, request_id=None, url=None, ip=None, environment_id=None, tag=
237240 self ._velocity = None
238241 self ._developer_tools = None
239242 self ._mitm_attack = None
243+ self ._replayed = None
240244 self .discriminator = None
241245 self .request_id = request_id
242246 self .url = url
@@ -317,6 +321,8 @@ def __init__(self, request_id=None, url=None, ip=None, environment_id=None, tag=
317321 self .developer_tools = developer_tools
318322 if mitm_attack is not None :
319323 self .mitm_attack = mitm_attack
324+ if replayed is not None :
325+ self .replayed = replayed
320326
321327 @property
322328 def request_id (self ) -> str :
@@ -1146,3 +1152,24 @@ def mitm_attack(self, mitm_attack: Optional[WebhookMitMAttack]):
11461152
11471153 self ._mitm_attack = mitm_attack
11481154
1155+ @property
1156+ def replayed (self ) -> Optional [bool ]:
1157+ """Gets the replayed of this Webhook. # noqa: E501
1158+
1159+ `true` if we determined that this payload was replayed, `false` otherwise. # noqa: E501
1160+
1161+ :return: The replayed of this Webhook. # noqa: E501
1162+ """
1163+ return self ._replayed
1164+
1165+ @replayed .setter
1166+ def replayed (self , replayed : Optional [bool ]):
1167+ """Sets the replayed of this Webhook.
1168+
1169+ `true` if we determined that this payload was replayed, `false` otherwise. # noqa: E501
1170+
1171+ :param replayed: The replayed of this Webhook. # noqa: E501
1172+ """
1173+
1174+ self ._replayed = replayed
1175+
0 commit comments