pub enum GetGwApiV1TaxDocumentsAvailableResponse {
Ok(GetAvailableTaxFormsResponse),
BadRequest,
Unauthorized,
PaymentRequired,
Forbidden,
InternalServerError,
Unknown,
}Expand description
Response types for get_gw_api_v1_tax_documents_available
Variants§
Ok(GetAvailableTaxFormsResponse)
200: Returns a JSON object containing the available report dates.
BadRequest
400: Returns a Problem detail instance representing a bad request.
401: Returns a Problem detail instance representing an unauthorized request.
PaymentRequired
402: Returns a Problem detail instance representing an unauthorized request.
Forbidden
403: Returns a Problem detail instance representing a forbidden request.
InternalServerError
500: Returns a Problem detail instance representing an internal server error.
Unknown
default: Unknown response
Trait Implementations§
Source§impl Clone for GetGwApiV1TaxDocumentsAvailableResponse
impl Clone for GetGwApiV1TaxDocumentsAvailableResponse
Source§fn clone(&self) -> GetGwApiV1TaxDocumentsAvailableResponse
fn clone(&self) -> GetGwApiV1TaxDocumentsAvailableResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for GetGwApiV1TaxDocumentsAvailableResponse
impl RefUnwindSafe for GetGwApiV1TaxDocumentsAvailableResponse
impl Send for GetGwApiV1TaxDocumentsAvailableResponse
impl Sync for GetGwApiV1TaxDocumentsAvailableResponse
impl Unpin for GetGwApiV1TaxDocumentsAvailableResponse
impl UnsafeUnpin for GetGwApiV1TaxDocumentsAvailableResponse
impl UnwindSafe for GetGwApiV1TaxDocumentsAvailableResponse
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