-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcreateaccounterror.py
More file actions
48 lines (42 loc) · 1.79 KB
/
createaccounterror.py
File metadata and controls
48 lines (42 loc) · 1.79 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
42
43
44
45
46
47
48
"""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.components import (
createaccountsettings as components_createaccountsettings,
createprofileerror as components_createprofileerror,
customersupporterror as components_customersupporterror,
termsofserviceerror as components_termsofserviceerror,
)
from moovio_sdk.models.errors import MoovError
from moovio_sdk.types import BaseModel
import pydantic
from typing import Dict, Optional
from typing_extensions import Annotated
class CreateAccountErrorData(BaseModel):
account_type: Annotated[Optional[str], pydantic.Field(alias="accountType")] = None
profile: Optional[components_createprofileerror.CreateProfileError] = None
metadata: Optional[str] = None
terms_of_service: Annotated[
Optional[components_termsofserviceerror.TermsOfServiceError],
pydantic.Field(alias="termsOfService"),
] = None
foreign_id: Annotated[Optional[str], pydantic.Field(alias="foreignID")] = None
customer_support: Annotated[
Optional[components_customersupporterror.CustomerSupportError],
pydantic.Field(alias="customerSupport"),
] = None
settings: Optional[components_createaccountsettings.CreateAccountSettings] = None
capabilities: Optional[Dict[str, str]] = None
@dataclass(unsafe_hash=True)
class CreateAccountError(MoovError):
data: CreateAccountErrorData = field(hash=False)
def __init__(
self,
data: CreateAccountErrorData,
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)