You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*CompaniesApi* | [**get_companies**](docs/CompaniesApi.md#get_companies) | **GET** /companies | Get List of Companies
116
116
*CompaniesApi* | [**get_company**](docs/CompaniesApi.md#get_company) | **GET** /companies/{id} | Get Company
117
117
*CompaniesApi* | [**get_company_documents**](docs/CompaniesApi.md#get_company_documents) | **GET** /companies/{company_id}/documents | Get Company Documents
118
+
*CompaniesApi* | [**get_current_company**](docs/CompaniesApi.md#get_current_company) | **GET** /companies/current | Get Current Company
118
119
*CompaniesApi* | [**update_company_document**](docs/CompaniesApi.md#update_company_document) | **PATCH** /companies/{company_id}/document | Update Company Document
119
120
*CompaniesApi* | [**upload_company_document**](docs/CompaniesApi.md#upload_company_document) | **POST** /companies/{company_id}/document | Upload Company Document
Retrieves information about the currently authenticated company. This endpoint returns the same data as the standard company endpoint but automatically uses the current company's context.
1249
+
1250
+
:param accept_language: Use for knowing which language to use
1251
+
:type accept_language: str
1252
+
:param _request_timeout: timeout setting for this request. If one
Retrieves information about the currently authenticated company. This endpoint returns the same data as the standard company endpoint but automatically uses the current company's context.
1318
+
1319
+
:param accept_language: Use for knowing which language to use
1320
+
:type accept_language: str
1321
+
:param _request_timeout: timeout setting for this request. If one
Retrieves information about the currently authenticated company. This endpoint returns the same data as the standard company endpoint but automatically uses the current company's context.
1387
+
1388
+
:param accept_language: Use for knowing which language to use
1389
+
:type accept_language: str
1390
+
:param _request_timeout: timeout setting for this request. If one
Copy file name to clipboardExpand all lines: conekta/models/checkout.py
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ class Checkout(BaseModel):
32
32
expires_at: StrictInt=Field(description="It is the time when the link will expire. It is expressed in seconds since the Unix epoch. The valid range is from 2 to 365 days (the valid range will be taken from the next day of the creation date at 00:01 hrs) ")
33
33
monthly_installments_enabled: Optional[StrictBool] =Field(default=None, description="This flag allows you to specify if months without interest will be active.")
34
34
monthly_installments_options: Optional[List[StrictInt]] =Field(default=None, description="This field allows you to specify the number of months without interest.")
35
-
three_ds_mode: Optional[StrictStr] =Field(default=None, description="Indicates the 3DS2 mode for the order, either smart or strict.")
35
+
three_ds_mode: Optional[StrictStr] =Field(default=None, description="Indicates the 3DS2 mode for the order, either smart or strict. This property is only applicable when 3DS is enabled. When 3DS is disabled, this field should be null.")
36
36
name: StrictStr=Field(description="Reason for charge")
37
37
needs_shipping_contact: Optional[StrictBool] =Field(default=None, description="This flag allows you to fill in the shipping information at checkout.")
38
38
on_demand_enabled: Optional[StrictBool] =Field(default=None, description="This flag allows you to specify if the link will be on demand.")
0 commit comments