Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 1.16 KB

File metadata and controls

24 lines (17 loc) · 1.16 KB

MemberImportItem

Properties

Name Type Description Notes
message string An error message, including CSV line number, if the <code>status</code> is <code>error</code> [optional] [default to undefined]
status string Whether this member can be successfully imported (<code>success</code>) or not (<code>error</code>). Even if the status is <code>success</code>, members are only added to a team on a <code>201</code> response. [default to undefined]
value string The email address for the member requested to be added to this team. May be blank or an error, such as &#39;invalid email format&#39;, if the email address cannot be found or parsed. [default to undefined]

Example

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

const instance: MemberImportItem = {
    message,
    status,
    value,
};

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