Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 489 Bytes

File metadata and controls

20 lines (14 loc) · 489 Bytes

ElasticEmail::ListUpdatePayload

Properties

Name Type Description Notes
new_list_name String Name of your list if you want to change it. [optional]
allow_unsubscribe Boolean True: Allow unsubscribing from this list. Otherwise, false [optional]

Example

require 'ElasticEmail'

instance = ElasticEmail::ListUpdatePayload.new(
  new_list_name: My List 2,
  allow_unsubscribe: false
)