Skip to content

Latest commit

 

History

History
72 lines (39 loc) · 2.12 KB

EmailContent.md

File metadata and controls

72 lines (39 loc) · 2.12 KB

EmailContent

Properties

Name Type Description Notes
Body string The email's HTML body. May contain variable references.
Subject string The email's subject. May contain variable references.

Methods

NewEmailContent

func NewEmailContent(body string, subject string, ) *EmailContent

NewEmailContent instantiates a new EmailContent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewEmailContentWithDefaults

func NewEmailContentWithDefaults() *EmailContent

NewEmailContentWithDefaults instantiates a new EmailContent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetBody

func (o *EmailContent) GetBody() string

GetBody returns the Body field if non-nil, zero value otherwise.

GetBodyOk

func (o *EmailContent) GetBodyOk() (*string, bool)

GetBodyOk returns a tuple with the Body field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetBody

func (o *EmailContent) SetBody(v string)

SetBody sets Body field to given value.

GetSubject

func (o *EmailContent) GetSubject() string

GetSubject returns the Subject field if non-nil, zero value otherwise.

GetSubjectOk

func (o *EmailContent) GetSubjectOk() (*string, bool)

GetSubjectOk returns a tuple with the Subject field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetSubject

func (o *EmailContent) SetSubject(v string)

SetSubject sets Subject field to given value.

[Back to Model list] [Back to API list] [Back to README]