Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 970 Bytes

MemberImportItem.md

File metadata and controls

22 lines (16 loc) · 970 Bytes

LaunchDarklyApi::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]
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.
value String The email address for the member requested to be added to this team. May be blank or an error, such as 'invalid email format', if the email address cannot be found or parsed.

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::MemberImportItem.new(
  message: null,
  status: error,
  value: new-team-member@acme.com
)