pub struct AuthenticationDomain {
pub automatic_security: bool,
pub custom_spf: bool,
pub default: bool,
pub dns: AuthenticationDomainDns,
pub domain: String,
pub id: f64,
pub ips: Vec<String>,
pub legacy: bool,
pub subdomain: String,
pub user_id: f64,
pub username: String,
pub valid: bool,
}
Fields§
§automatic_security: bool
Indicates if your subuser statistics will be sent to your New Relic Dashboard.
custom_spf: bool
Indicates if your subuser statistics will be sent to your New Relic Dashboard.
default: bool
Indicates if your subuser statistics will be sent to your New Relic Dashboard.
dns: AuthenticationDomainDns
The DNS records used to authenticate the sending domain.
domain: String
The license key provided with your New Relic account.
id: f64
The number of errors found while adding recipients.
ips: Vec<String>
The recipient IDs of the recipients that already existed from this request.
legacy: bool
Indicates if your subuser statistics will be sent to your New Relic Dashboard.
subdomain: String
The license key provided with your New Relic account.
user_id: f64
The number of errors found while adding recipients.
username: String
The license key provided with your New Relic account.
valid: bool
Indicates if your subuser statistics will be sent to your New Relic Dashboard.
Trait Implementations§
Source§impl Clone for AuthenticationDomain
impl Clone for AuthenticationDomain
Source§fn clone(&self) -> AuthenticationDomain
fn clone(&self) -> AuthenticationDomain
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for AuthenticationDomain
impl Debug for AuthenticationDomain
Source§impl<'de> Deserialize<'de> for AuthenticationDomain
impl<'de> Deserialize<'de> for AuthenticationDomain
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl JsonSchema for AuthenticationDomain
impl JsonSchema for AuthenticationDomain
Source§fn schema_name() -> String
fn schema_name() -> String
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
$ref
keyword. Read more