| Name | Type | Description | Notes |
|---|---|---|---|
| body | str | The email's HTML body. May contain variable references. | |
| subject | str | The email's subject. May contain variable references. | |
| created | datetime | The UTC time at which this email customization was created. | [optional] [readonly] |
| id | str | A unique identifier for this email customization | [optional] [readonly] |
| is_default | bool | Whether this is the default customization for the email template. Each customized email template must have exactly one default customization. Defaults to `true` for the first customization and `false` thereafter. | [optional] |
| language | str | The language specified as an IETF BCP 47 language tag | |
| last_updated | datetime | The UTC time at which this email customization was last updated. | [optional] [readonly] |
| links | EmailCustomizationAllOfLinks | [optional] |
from okta.models.email_customization import EmailCustomization
# TODO update the JSON string below
json = "{}"
# create an instance of EmailCustomization from a JSON string
email_customization_instance = EmailCustomization.from_json(json)
# print the JSON string representation of the object
print(EmailCustomization.to_json())
# convert the object into a dict
email_customization_dict = email_customization_instance.to_dict()
# create an instance of EmailCustomization from a dict
email_customization_from_dict = EmailCustomization.from_dict(email_customization_dict)