Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 819 Bytes

File metadata and controls

26 lines (20 loc) · 819 Bytes

ElasticEmail::ApiKeyPayload

Properties

Name Type Description Notes
name String Name of the ApiKey for ease of reference.
access_level Array<AccessLevel> Access level or permission to be assigned to this ApiKey.
expires Time Date this ApiKey expires. [optional]
restrict_access_to_ip_range Array<String> Which IPs can use this ApiKey [optional]
subaccount String Email of the subaccount for which this ApiKey should be created [optional]

Example

require 'ElasticEmail'

instance = ElasticEmail::ApiKeyPayload.new(
  name: null,
  access_level: null,
  expires: null,
  restrict_access_to_ip_range: null,
  subaccount: null
)