Struct mailslurp::models::domain_dto::DomainDto[][src]

pub struct DomainDto {
    pub catch_all_inbox_id: Option<String>,
    pub created_at: String,
    pub dkim_tokens: Option<Vec<String>>,
    pub domain: Option<String>,
    pub domain_name_records: Option<Vec<DomainNameRecord>>,
    pub domain_type: Option<DomainType>,
    pub id: String,
    pub is_verified: Option<bool>,
    pub updated_at: String,
    pub user_id: String,
    pub verification_token: Option<String>,
}
Expand description

DomainDto : Domain plus verification records and status

Fields

catch_all_inbox_id: Option<String>

The optional catch all inbox that will receive emails sent to the domain that cannot be matched.

created_at: Stringdkim_tokens: Option<Vec<String>>

Unique token DKIM tokens

domain: Option<String>

Custom domain name

domain_name_records: Option<Vec<DomainNameRecord>>

List of DNS domain name records (C, MX, TXT) etc that you must add to the DNS server associated with your domain provider.

domain_type: Option<DomainType>

The type of domain. SMTP or HTTP domains differ in what inboxes can be used with them.

id: Stringis_verified: Option<bool>

Whether domain has been verified or not. If the domain is not verified after 72 hours there is most likely an issue with the domains DNS records.

updated_at: Stringuser_id: Stringverification_token: Option<String>

Verification tokens

Implementations

Domain plus verification records and status

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.