Name | Type | Description | Notes |
---|---|---|---|
Kind | string | The type of change to make to the removal date for this user from individual targeting for this flag. | |
FlagKey | string | The flag key | |
VariationId | string | ID of a variation on the flag | |
Value | Pointer to int32 | 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 | Pointer to int32 | 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] |
func NewInstructionUserRequest(kind string, flagKey string, variationId string, ) *InstructionUserRequest
NewInstructionUserRequest instantiates a new InstructionUserRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewInstructionUserRequestWithDefaults() *InstructionUserRequest
NewInstructionUserRequestWithDefaults instantiates a new InstructionUserRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *InstructionUserRequest) GetKind() string
GetKind returns the Kind field if non-nil, zero value otherwise.
func (o *InstructionUserRequest) GetKindOk() (*string, bool)
GetKindOk returns a tuple with the Kind field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *InstructionUserRequest) SetKind(v string)
SetKind sets Kind field to given value.
func (o *InstructionUserRequest) GetFlagKey() string
GetFlagKey returns the FlagKey field if non-nil, zero value otherwise.
func (o *InstructionUserRequest) GetFlagKeyOk() (*string, bool)
GetFlagKeyOk returns a tuple with the FlagKey field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *InstructionUserRequest) SetFlagKey(v string)
SetFlagKey sets FlagKey field to given value.
func (o *InstructionUserRequest) GetVariationId() string
GetVariationId returns the VariationId field if non-nil, zero value otherwise.
func (o *InstructionUserRequest) GetVariationIdOk() (*string, bool)
GetVariationIdOk returns a tuple with the VariationId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *InstructionUserRequest) SetVariationId(v string)
SetVariationId sets VariationId field to given value.
func (o *InstructionUserRequest) GetValue() int32
GetValue returns the Value field if non-nil, zero value otherwise.
func (o *InstructionUserRequest) GetValueOk() (*int32, bool)
GetValueOk returns a tuple with the Value field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *InstructionUserRequest) SetValue(v int32)
SetValue sets Value field to given value.
func (o *InstructionUserRequest) HasValue() bool
HasValue returns a boolean if a field has been set.
func (o *InstructionUserRequest) GetVersion() int32
GetVersion returns the Version field if non-nil, zero value otherwise.
func (o *InstructionUserRequest) GetVersionOk() (*int32, bool)
GetVersionOk returns a tuple with the Version field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *InstructionUserRequest) SetVersion(v int32)
SetVersion sets Version field to given value.
func (o *InstructionUserRequest) HasVersion() bool
HasVersion returns a boolean if a field has been set.