Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.76 KB

File metadata and controls

33 lines (24 loc) · 1.76 KB

InstructionUserRequest

Properties

Name Type Description Notes
kind str The type of change to make to the removal date for this user from individual targeting for this flag.
flag_key str The flag key
variation_id str ID of a variation on the flag
value int The time, in Unix milliseconds, when LaunchDarkly should remove the user from individual targeting for this flag. Required if <code>kind</code> is <code>addExpireUserTargetDate</code> or <code>updateExpireUserTargetDate</code>. [optional]
version int The version of the expiring user target to update. Optional and only used if <code>kind</code> is <code>updateExpireUserTargetDate</code>. If included, update will fail if version doesn't match current version of the expiring user target. [optional]

Example

from launchdarkly_api.models.instruction_user_request import InstructionUserRequest

# TODO update the JSON string below
json = "{}"
# create an instance of InstructionUserRequest from a JSON string
instruction_user_request_instance = InstructionUserRequest.from_json(json)
# print the JSON string representation of the object
print(InstructionUserRequest.to_json())

# convert the object into a dict
instruction_user_request_dict = instruction_user_request_instance.to_dict()
# create an instance of InstructionUserRequest from a dict
instruction_user_request_from_dict = InstructionUserRequest.from_dict(instruction_user_request_dict)

[Back to Model list] [Back to API list] [Back to README]