-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcost_calculator_estimate_response.py
26 lines (19 loc) · 1.31 KB
/
cost_calculator_estimate_response.py
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
# coding: utf-8
"""
Remote API
Talent is everywhere. Opportunity is not. Remote's mission is to create opportunity everywhere, empowering employers to find and hire the best talent, and enabling individuals to build financial and personal freedom. Remote is a Global HR Platform that helps companies hire, manage, and pay their entire team — and more effectively compete in the modern global economy through our comprehensive set of core solutions including, HRIS, payroll, international employment, contractor management, and more. Whether you're just starting your global journey, or looking to optimize your existing operations, sign up or book a demo - and see how Remote makes global HR simple.
The version of the OpenAPI document: 0.1.0
Generated by: https://konfigthis.com
"""
from datetime import datetime, date
import typing
from enum import Enum
from typing_extensions import TypedDict, Literal, TYPE_CHECKING
from pydantic import BaseModel, Field, RootModel, ConfigDict
from remote_python_sdk.pydantic.cost_calculator_estimate_response_data import CostCalculatorEstimateResponseData
class CostCalculatorEstimateResponse(BaseModel):
data: CostCalculatorEstimateResponseData = Field(alias='data')
model_config = ConfigDict(
protected_namespaces=(),
arbitrary_types_allowed=True
)