| Name |
Type |
Description |
Notes |
| kind |
string |
The type of change to make to the user's removal date from this segment |
[default to undefined] |
| userKey |
string |
A unique key used to represent the user |
[default to undefined] |
| targetType |
string |
The segment's target type |
[default to undefined] |
| value |
number |
The time, in Unix milliseconds, when the user should be removed from this segment. Required if <code>kind</code> is <code>addExpireUserTargetDate</code> or <code>updateExpireUserTargetDate</code>. |
[optional] [default to undefined] |
| version |
number |
The version of the segment to update. Required if <code>kind</code> is <code>updateExpireUserTargetDate</code>. |
[optional] [default to undefined] |
import { PatchSegmentInstruction } from 'launchdarkly-api-typescript';
const instance: PatchSegmentInstruction = {
kind,
userKey,
targetType,
value,
version,
};
[Back to Model list] [Back to API list] [Back to README]