Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1.16 KB

GetExtendedList.md

File metadata and controls

34 lines (28 loc) · 1.16 KB

Brevo::GetExtendedList

Properties

Name Type Description Notes
id Integer ID of the list
name String Name of the list
total_blacklisted Integer Number of blacklisted contacts in the list
total_subscribers Integer Number of contacts in the list
unique_subscribers Integer Number of unique contacts in the list
folder_id Integer ID of the folder
created_at String Creation UTC date-time of the list (YYYY-MM-DDTHH:mm:ss.SSSZ)
campaign_stats Array<GetExtendedListAllOfCampaignStats> [optional]
dynamic_list Boolean Status telling if the list is dynamic or not (true=dynamic, false=not dynamic) [optional]

Example

require 'brevo'

instance = Brevo::GetExtendedList.new(
  id: 23,
  name: Magento Customers - EN,
  total_blacklisted: 13,
  total_subscribers: 1776,
  unique_subscribers: 1789,
  folder_id: 2,
  created_at: 2017-03-13T17:05:09Z,
  campaign_stats: null,
  dynamic_list: false
)