-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add new charge-related documentation and models (#8)
This commit adds new documentation and models related to charges. It includes the following changes: - Added `ChargesOrderResponse.md` and `ChargesOrderResponseAllOfData.md` to the documentation. - Added `ChargesOrderResponse.dart` and `ChargesOrderResponseAllOfData.dart` to the model files. - Updated the version in `.openapi-generator/VERSION` from 7.5.0 to 7.10.0. - Updated the changelog with fixes and updates. - Updated the pubVersion in `config-dart.json` from 6.0.5 to 6.0.6. - Added new properties and descriptions in `ChargeOrderResponsePaymentMethod.md`, `ChargeRequest.md`, `ChargeRequestPaymentMethod.md`, `ChargeResponse.md`, and `ChargeResponsePaymentMethod.md`. - Added a new API method, `ordersCreateCharges`, for creating charges. These changes enhance the existing codebase by providing additional documentation and models for charge-related functionality, as well as introducing a new API method for creating charges. Co-authored-by: AI Assistant <[email protected]>
- Loading branch information
Showing
108 changed files
with
3,103 additions
and
483 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
7.5.0 | ||
7.10.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
## 6.0.5 -2024-30-04 | ||
* Fix entities | ||
## 6.0.5 -2024-30-04 | ||
* Update entities and methods | ||
## 6.0.4 -2024-20-02 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
6.0.5 | ||
6.0.6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# conekta.model.ChargesOrderResponse | ||
|
||
## Load the model package | ||
```dart | ||
import 'package:conekta/api.dart'; | ||
``` | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**hasMore** | **bool** | Indicates if there are more pages to be requested | | ||
**object** | **String** | Object type, in this case is list | | ||
**data** | [**BuiltList<ChargesOrderResponseAllOfData>**](ChargesOrderResponseAllOfData.md) | | [optional] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# conekta.model.ChargesOrderResponseAllOfData | ||
|
||
## Load the model package | ||
```dart | ||
import 'package:conekta/api.dart'; | ||
``` | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**amount** | **int** | | [optional] | ||
**channel** | [**ChargeResponseChannel**](ChargeResponseChannel.md) | | [optional] | ||
**createdAt** | **int** | | [optional] | ||
**currency** | **String** | | [optional] | ||
**customerId** | **String** | | [optional] | ||
**description** | **String** | | [optional] | ||
**deviceFingerprint** | **String** | | [optional] | ||
**failureCode** | **String** | | [optional] | ||
**failureMessage** | **String** | | [optional] | ||
**id** | **String** | Charge ID | [optional] | ||
**livemode** | **bool** | Whether the charge was made in live mode or not | [optional] | ||
**object** | **String** | | [optional] | ||
**orderId** | **String** | Order ID | [optional] | ||
**paidAt** | **int** | Payment date | [optional] | ||
**paymentMethod** | [**ChargeResponsePaymentMethod**](ChargeResponsePaymentMethod.md) | | [optional] | ||
**referenceId** | **String** | Reference ID of the charge | [optional] | ||
**refunds** | [**ChargeResponseRefunds**](ChargeResponseRefunds.md) | | [optional] | ||
**status** | **String** | | [optional] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.