-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathproductrequestvalidationerror.py
More file actions
54 lines (48 loc) · 1.77 KB
/
productrequestvalidationerror.py
File metadata and controls
54 lines (48 loc) · 1.77 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
49
50
51
52
53
54
"""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 (
amountdecimalvalidationerror as components_amountdecimalvalidationerror,
assignproductimagevalidationerror as components_assignproductimagevalidationerror,
productoptiongroupvalidationerror as components_productoptiongroupvalidationerror,
)
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 ProductRequestValidationErrorData(BaseModel):
title: Optional[str] = None
description: Optional[str] = None
base_price: Annotated[
Optional[components_amountdecimalvalidationerror.AmountDecimalValidationError],
pydantic.Field(alias="basePrice"),
] = None
images: Optional[
Dict[
str,
components_assignproductimagevalidationerror.AssignProductImageValidationError,
]
] = None
option_groups: Annotated[
Optional[
Dict[
str,
components_productoptiongroupvalidationerror.ProductOptionGroupValidationError,
]
],
pydantic.Field(alias="optionGroups"),
] = None
@dataclass(unsafe_hash=True)
class ProductRequestValidationError(MoovError):
data: ProductRequestValidationErrorData = field(hash=False)
def __init__(
self,
data: ProductRequestValidationErrorData,
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)