-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpatchsweepconfigerror.py
More file actions
41 lines (35 loc) · 1.27 KB
/
patchsweepconfigerror.py
File metadata and controls
41 lines (35 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
from __future__ import annotations
from dataclasses import dataclass, field
import httpx
from moovio_sdk.models.errors import MoovError
from moovio_sdk.types import BaseModel
import pydantic
from typing import Optional
from typing_extensions import Annotated
class PatchSweepConfigErrorData(BaseModel):
status: Optional[str] = None
push_payment_method_id: Annotated[
Optional[str], pydantic.Field(alias="pushPaymentMethodID")
] = None
pull_payment_method_id: Annotated[
Optional[str], pydantic.Field(alias="pullPaymentMethodID")
] = None
statement_descriptor: Annotated[
Optional[str], pydantic.Field(alias="statementDescriptor")
] = None
minimum_balance: Annotated[
Optional[str], pydantic.Field(alias="minimumBalance")
] = None
@dataclass(unsafe_hash=True)
class PatchSweepConfigError(MoovError):
data: PatchSweepConfigErrorData = field(hash=False)
def __init__(
self,
data: PatchSweepConfigErrorData,
raw_response: httpx.Response,
body: Optional[str] = None,
):
message = body or raw_response.text
super().__init__(message, raw_response, body)
object.__setattr__(self, "data", data)