Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.5 KB

File metadata and controls

31 lines (22 loc) · 1.5 KB

MemberImportItem

Properties

Name Type Description Notes
message str An error message, including CSV line number, if the <code>status</code> is <code>error</code> [optional]
status str 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 str 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

from launchdarkly_api.models.member_import_item import MemberImportItem

# TODO update the JSON string below
json = "{}"
# create an instance of MemberImportItem from a JSON string
member_import_item_instance = MemberImportItem.from_json(json)
# print the JSON string representation of the object
print(MemberImportItem.to_json())

# convert the object into a dict
member_import_item_dict = member_import_item_instance.to_dict()
# create an instance of MemberImportItem from a dict
member_import_item_from_dict = MemberImportItem.from_dict(member_import_item_dict)

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