pub struct CreateEntityRequest {
pub display_name: String,
pub legal_name: Option<String>,
pub entity_type: EntityType,
pub description: Option<String>,
pub domains: Option<Vec<String>>,
pub profile: Option<HashMap<String, Value>>,
}Expand description
Request to create a new entity
Fields§
§display_name: String§legal_name: Option<String>§entity_type: EntityType§description: Option<String>§domains: Option<Vec<String>>§profile: Option<HashMap<String, Value>>Trait Implementations§
Source§impl Debug for CreateEntityRequest
impl Debug for CreateEntityRequest
Auto Trait Implementations§
impl Freeze for CreateEntityRequest
impl RefUnwindSafe for CreateEntityRequest
impl Send for CreateEntityRequest
impl Sync for CreateEntityRequest
impl Unpin for CreateEntityRequest
impl UnsafeUnpin for CreateEntityRequest
impl UnwindSafe for CreateEntityRequest
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