Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.42 KB

File metadata and controls

30 lines (23 loc) · 1.42 KB

ExpiringUserTargetPatchResponse

Properties

Name Type Description Notes
items Array<ExpiringUserTargetItem> An array of expiring user targets [default to undefined]
_links { [key: string]: Link; } The location and content type of related resources [optional] [default to undefined]
totalInstructions number The total count of instructions sent in the PATCH request [optional] [default to undefined]
successfulInstructions number The total count of successful instructions sent in the PATCH request [optional] [default to undefined]
failedInstructions number The total count of the failed instructions sent in the PATCH request [optional] [default to undefined]
errors Array<ExpiringTargetError> An array of error messages for the failed instructions [optional] [default to undefined]

Example

import { ExpiringUserTargetPatchResponse } from 'launchdarkly-api-typescript';

const instance: ExpiringUserTargetPatchResponse = {
    items,
    _links,
    totalInstructions,
    successfulInstructions,
    failedInstructions,
    errors,
};

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