Struct xoev_xwasser::OrganisationType
source · pub struct OrganisationType {
pub rechtsform: Option<CodeRechtsformenType>,
pub branche: Vec<CodeBrancheType>,
pub zweck: Vec<CodeZweckType>,
pub name: Option<NameOrganisationType>,
pub unterorganisation: Vec<OrganisationType>,
pub kommunikation: Vec<KommunikationType>,
pub registrierung: Vec<RegistrierungType>,
pub identifikation: Vec<IdentifikationType>,
pub existenzzeitraum: Option<ZeitraumType>,
pub anschrift: Vec<AnschriftType>,
}
Expand description
Eine Organisation ist eine Vereinigung mehrerer natürlicher oder juristischer Personen bzw. eine rechtsfähige Personengesellschaft zu einem gemeinsamen Zweck, z.B. im wirtschaftlichen, gemeinnützigen, religiösen, öffentlichen oder politischen Bereich. Behörden werden über eine eigene Kernkomponente “Behoerde” abgebildet.
Fields§
§rechtsform: Option<CodeRechtsformenType>
§branche: Vec<CodeBrancheType>
§zweck: Vec<CodeZweckType>
§name: Option<NameOrganisationType>
§unterorganisation: Vec<OrganisationType>
§kommunikation: Vec<KommunikationType>
§registrierung: Vec<RegistrierungType>
§identifikation: Vec<IdentifikationType>
§existenzzeitraum: Option<ZeitraumType>
§anschrift: Vec<AnschriftType>
Trait Implementations§
source§impl Debug for OrganisationType
impl Debug for OrganisationType
source§impl Default for OrganisationType
impl Default for OrganisationType
source§fn default() -> OrganisationType
fn default() -> OrganisationType
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for OrganisationType
impl<'de> Deserialize<'de> for OrganisationType
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
source§impl Serialize for OrganisationType
impl Serialize for OrganisationType
source§impl Tsify for OrganisationType
impl Tsify for OrganisationType
type JsType = JsType
const DECL: &'static str = "export interface OrganisationType {\n rechtsform: CodeRechtsformenType | undefined;\n branche: CodeBrancheType[];\n zweck: CodeZweckType[];\n name: NameOrganisationType | undefined;\n unterorganisation: OrganisationType[];\n kommunikation: KommunikationType[];\n registrierung: RegistrierungType[];\n identifikation: IdentifikationType[];\n existenzzeitraum: ZeitraumType | undefined;\n anschrift: AnschriftType[];\n}"
fn into_js(&self) -> Result<Self::JsType, Error>where
Self: Serialize,
fn from_js<T>(js: T) -> Result<Self, Error>
source§impl XmlDeserialize for OrganisationType
impl XmlDeserialize for OrganisationType
Auto Trait Implementations§
impl Freeze for OrganisationType
impl RefUnwindSafe for OrganisationType
impl Send for OrganisationType
impl Sync for OrganisationType
impl Unpin for OrganisationType
impl UnwindSafe for OrganisationType
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