Sha256: 5b9799161dbbbfbbd9137cfab1950a9b3d52f4d1ca008986f67826ad66cc30bb
Contents?: true
Size: 952 Bytes
Versions: 1
Compression:
Stored size: 952 Bytes
Contents
# ElasticEmail::ContactPayload ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **email** | **String** | Proper email address. | | | **status** | [**ContactStatus**](ContactStatus.md) | Status of the given resource | [optional] | | **first_name** | **String** | First name. | [optional] | | **last_name** | **String** | Last name. | [optional] | | **custom_fields** | **Hash<String, String>** | A key-value collection of custom contact fields which can be used in the system. Only already existing custom fields will be saved. | [optional] | | **consent** | [**ConsentData**](ConsentData.md) | | [optional] | ## Example ```ruby require 'ElasticEmail' instance = ElasticEmail::ContactPayload.new( email: mail@example.com, status: null, first_name: Fred, last_name: Flintstone, custom_fields: {"city":"New York","age":"34"}, consent: null ) ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ElasticEmail-4.0.13 | docs/ContactPayload.md |