[][src]Struct sdkms::api_model::AccountRequest

pub struct AccountRequest {
    pub add_ldap: Option<Vec<AuthConfigLdap>>,
    pub add_logging_configs: Option<Vec<LoggingConfigRequest>>,
    pub approval_policy: Option<AccountApprovalPolicy>,
    pub approval_request_expiry: Option<u64>,
    pub auth_config: Option<AuthConfig>,
    pub country: Option<String>,
    pub custom_logo: Option<Blob>,
    pub custom_metadata: Option<HashMap<String, String>>,
    pub del_ldap: Option<HashSet<Uuid>>,
    pub del_logging_configs: Option<HashSet<Uuid>>,
    pub description: Option<String>,
    pub enabled: Option<bool>,
    pub mod_ldap: Option<HashMap<Uuid, AuthConfigLdap>>,
    pub mod_logging_configs: Option<HashMap<Uuid, LoggingConfigRequest>>,
    pub name: Option<String>,
    pub notification_pref: Option<NotificationPref>,
    pub organization: Option<String>,
    pub parent_acct_id: Option<Uuid>,
    pub pending_subscription_change_request: Option<SubscriptionChangeRequest>,
    pub phone: Option<String>,
    pub plugin_enabled: Option<bool>,
    pub subscription: Option<SubscriptionType>,
}

Fields

add_ldap: Option<Vec<AuthConfigLdap>>add_logging_configs: Option<Vec<LoggingConfigRequest>>approval_policy: Option<AccountApprovalPolicy>approval_request_expiry: Option<u64>auth_config: Option<AuthConfig>country: Option<String>custom_metadata: Option<HashMap<String, String>>del_ldap: Option<HashSet<Uuid>>del_logging_configs: Option<HashSet<Uuid>>description: Option<String>enabled: Option<bool>mod_ldap: Option<HashMap<Uuid, AuthConfigLdap>>mod_logging_configs: Option<HashMap<Uuid, LoggingConfigRequest>>name: Option<String>notification_pref: Option<NotificationPref>organization: Option<String>parent_acct_id: Option<Uuid>pending_subscription_change_request: Option<SubscriptionChangeRequest>phone: Option<String>plugin_enabled: Option<bool>subscription: Option<SubscriptionType>

Trait Implementations

impl Clone for AccountRequest[src]

impl Debug for AccountRequest[src]

impl Default for AccountRequest[src]

impl<'de> Deserialize<'de> for AccountRequest[src]

impl Serialize for AccountRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any