pub struct BeginIn {
pub already_incorporated: Option<bool>,
pub jurisdiction: Option<String>,
pub name: Option<String>,
pub structure: Option<String>,
}Fields§
§already_incorporated: Option<bool>AlreadyIncorporated declares an org that already has an entity, which takes the import path (POST /v1/company/skip) instead of the formation path.
jurisdiction: Option<String>Jurisdiction is the state of formation: DE or WY.
name: Option<String>Name is the proposed company name.
structure: Option<String>Structure is the legal entity to form: c-corp, llc or dao-llc.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for BeginIn
impl<'de> Deserialize<'de> for BeginIn
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 StructuralPartialEq for BeginIn
Auto Trait Implementations§
impl Freeze for BeginIn
impl RefUnwindSafe for BeginIn
impl Send for BeginIn
impl Sync for BeginIn
impl Unpin for BeginIn
impl UnsafeUnpin for BeginIn
impl UnwindSafe for BeginIn
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