Name | Type | Description | Notes |
---|---|---|---|
String | Login Email | ||
first_name | String | First Name | |
last_name | String | Last Name | |
company_name | String | Name of the company | |
address | GetExtendedClientAllOfAddress | ||
plan | Array<GetAccountAllOfPlan> | Information about your plans and credits | |
relay | GetAccountAllOfRelay | ||
marketing_automation | GetAccountAllOfMarketingAutomation | [optional] |
require 'brevo'
instance = Brevo::GetAccount.new(
email: john.smith@example.com,
first_name: John,
last_name: Smith,
company_name: MyCompany,
address: null,
plan: null,
relay: null,
marketing_automation: null
)