Struct dnsimple::dnsimple::zones_records::ZoneRecordUpdatePayload[][src]

pub struct ZoneRecordUpdatePayload {
    pub name: Option<String>,
    pub content: Option<String>,
    pub ttl: Option<u64>,
    pub priority: Option<u64>,
    pub regions: Option<Vec<String>>,
}
Expand description

Represents the payload to be send to update a zone record

Fields

name: Option<String>

The record name (without the domain name).

content: Option<String>

The plain-text record content.

ttl: Option<u64>

The TTL value.

priority: Option<u64>

The priority value, if the type of record accepts a priority.

regions: Option<Vec<String>>

The regions where the record is propagated. This is optional.

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

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.

Performs the conversion.

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.