pub struct IFKDimensionsController;Expand description
WebAPI controller FKDimensions.
Implementations§
Source§impl IFKDimensionsController
impl IFKDimensionsController
Sourcepub async fn GetAccountChartByIdAndYear(
api: &ApiClient,
id: i32,
year_id: i32,
) -> Result<ResponseEnvelope<Vec<Dimension>>, ApiError>
pub async fn GetAccountChartByIdAndYear( api: &ApiClient, id: i32, year_id: i32, ) -> Result<ResponseEnvelope<Vec<Dimension>>, ApiError>
GET /api/FKDimensions/AccountChart
Parameter id: Id konta.
Parameter year_id: Id roku.
Sourcepub async fn GetAccountChartByIdAndYearRaw(
api: &ApiClient,
id: i32,
year_id: i32,
) -> Result<ResponseEnvelope<Value>, ApiError>
pub async fn GetAccountChartByIdAndYearRaw( api: &ApiClient, id: i32, year_id: i32, ) -> Result<ResponseEnvelope<Value>, ApiError>
GET /api/FKDimensions/AccountChart
Parameter id: Id konta.
Parameter year_id: Id roku.
Sourcepub async fn GetDocumentByIdAndYear(
api: &ApiClient,
id: i32,
year_id: i32,
) -> Result<ResponseEnvelope<Document>, ApiError>
pub async fn GetDocumentByIdAndYear( api: &ApiClient, id: i32, year_id: i32, ) -> Result<ResponseEnvelope<Document>, ApiError>
GET /api/FKDimensions/Document
Parameter id: Id dokumentu.
Parameter year_id: Id roku.
Sourcepub async fn GetDocumentByIdAndYearRaw(
api: &ApiClient,
id: i32,
year_id: i32,
) -> Result<ResponseEnvelope<Value>, ApiError>
pub async fn GetDocumentByIdAndYearRaw( api: &ApiClient, id: i32, year_id: i32, ) -> Result<ResponseEnvelope<Value>, ApiError>
GET /api/FKDimensions/Document
Parameter id: Id dokumentu.
Parameter year_id: Id roku.
Sourcepub async fn GetClassification(
api: &ApiClient,
) -> Result<ResponseEnvelope<Vec<DimensionClassification>>, ApiError>
pub async fn GetClassification( api: &ApiClient, ) -> Result<ResponseEnvelope<Vec<DimensionClassification>>, ApiError>
GET /api/FKDimensions/Classification
Sourcepub async fn GetClassificationRaw(
api: &ApiClient,
) -> Result<ResponseEnvelope<Value>, ApiError>
pub async fn GetClassificationRaw( api: &ApiClient, ) -> Result<ResponseEnvelope<Value>, ApiError>
GET /api/FKDimensions/Classification
Auto Trait Implementations§
impl Freeze for IFKDimensionsController
impl RefUnwindSafe for IFKDimensionsController
impl Send for IFKDimensionsController
impl Sync for IFKDimensionsController
impl Unpin for IFKDimensionsController
impl UnsafeUnpin for IFKDimensionsController
impl UnwindSafe for IFKDimensionsController
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