pub struct MultitenancyCreateResponse {
pub created_at: String,
pub key_management_mode: String,
pub settings: Value,
pub token: String,
pub updated_at: String,
pub wallet_id: String,
}Expand description
Response of the create endpoint on the multitenancy module
Fields§
§created_at: StringTimestamp of when the subwallet was created
key_management_mode: StringThe mode of the key management (managed, unmanaged)
settings: ValueMore wallet information
token: StringJWT
updated_at: StringTimestamp of when the last update happened to the wallet
wallet_id: StringThe wallet id
Trait Implementations§
Source§impl Clone for MultitenancyCreateResponse
impl Clone for MultitenancyCreateResponse
Source§fn clone(&self) -> MultitenancyCreateResponse
fn clone(&self) -> MultitenancyCreateResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MultitenancyCreateResponse
impl Debug for MultitenancyCreateResponse
Source§impl Default for MultitenancyCreateResponse
impl Default for MultitenancyCreateResponse
Source§fn default() -> MultitenancyCreateResponse
fn default() -> MultitenancyCreateResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MultitenancyCreateResponse
impl<'de> Deserialize<'de> for MultitenancyCreateResponse
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>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for MultitenancyCreateResponse
impl StructuralPartialEq for MultitenancyCreateResponse
Auto Trait Implementations§
impl Freeze for MultitenancyCreateResponse
impl RefUnwindSafe for MultitenancyCreateResponse
impl Send for MultitenancyCreateResponse
impl Sync for MultitenancyCreateResponse
impl Unpin for MultitenancyCreateResponse
impl UnwindSafe for MultitenancyCreateResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more