Skip to content

submit_withdraw

Submit Withdraw Response

This module contains the type definitions for the response of the submit withdraw endpoint.

Classes

  • SubmitWithdrawResponse: A TypedDict that represents the structure of the submit withdraw response.

SubmitWithdrawResponse

Bases: TypedDict

Submit Withdraw Response.

Attributes:

Name Type Description
message str

Message.

Examples:

>>> SubmitWithdrawResponse(message="message")
{
    'message': 'message'
}
Source code in src/bit24/types/responses/submit_withdraw.py
class SubmitWithdrawResponse(TypedDict):
    """
    Submit Withdraw Response.

    Attributes:
        message (str): Message.

    Examples:
        >>> SubmitWithdrawResponse(message="message")
        {
            'message': 'message'
        }
    """

    message: str