pub struct get_ag_sequence;Expand description
GET /api/v1/legal/ag-sequence Get the mandatory sequence of general assembly agenda items
Returns the full sequence of AG agenda items with their order, mandatory status, required majority, and legal notes.
Returns:
200 OK- Array of AG sequence steps500 Internal Server Error- JSON parsing error
§Example
GET /api/v1/legal/ag-sequence
Response 200 OK:
[
{
"step": 1,
"point_odj": "Ouverture et constitution du bureau",
"mandatory": true,
"majority": null,
"notes": "Élection du président (copropriétaire), désignation du secrétaire..."
},
{
"step": 2,
"point_odj": "Vérification du quorum et émargement",
"mandatory": true,
"majority": null,
"notes": "Signature feuille de présence, calcul quorum (>50% quotes-parts)..."
},
...
]Trait Implementations§
Source§impl HttpServiceFactory for get_ag_sequence
impl HttpServiceFactory for get_ag_sequence
Source§impl Path for get_ag_sequence
impl Path for get_ag_sequence
Source§impl SchemaReferences for get_ag_sequence
impl SchemaReferences for get_ag_sequence
Source§impl<'t> Tags<'t> for get_ag_sequence
impl<'t> Tags<'t> for get_ag_sequence
Auto Trait Implementations§
impl Freeze for get_ag_sequence
impl RefUnwindSafe for get_ag_sequence
impl Send for get_ag_sequence
impl Sync for get_ag_sequence
impl Unpin for get_ag_sequence
impl UnwindSafe for get_ag_sequence
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
§impl<T> Chain<T> for T
impl<T> Chain<T> for T
§impl<T> Fake for T
impl<T> Fake for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.