Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 770 Bytes

File metadata and controls

22 lines (15 loc) · 770 Bytes

BulkEditMembersRep

Properties

Name Type Description Notes
members Array<string> A list of members IDs of the members who were successfully updated. [optional] [default to undefined]
errors Array<{ [key: string]: string; }> A list of member IDs and errors for the members whose updates failed. [optional] [default to undefined]

Example

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

const instance: BulkEditMembersRep = {
    members,
    errors,
};

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