Skip to content
This repository was archived by the owner on Apr 23, 2021. It is now read-only.

Commit 7200ae2

Browse files
authored
Release/2.22.0 (#131)
* Release 2.22.0
1 parent 307306d commit 7200ae2

File tree

218 files changed

+14816
-1006
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

218 files changed

+14816
-1006
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ install:
1212

1313
script:
1414
- export frameworkVersion=netstandard2.0
15-
- export releaseVersion="2.21.0"
15+
- export releaseVersion="2.22.0"
1616
- /bin/sh ./mono_nunit_test.sh
1717

1818
after_success:

CHANGES.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Change Log
22

3+
## Version 2.22.0 (2019-08-15)
4+
5+
* **New functionality**: All SDKs have been updated to support the Sandbox v2 BETA release
6+
* **Deprecated functionality**: All Transactions API functionality is deprecated in favor of Payments API and Refunds API functionality.
7+
* **New functionality**: All SDKs have been updated to support the Payments API GA.
8+
* **New functionality**: All SDKs have been updated to support the Refunds API GA.
9+
* **New functionality**: All SDKs have been updated to support Orders API updates:
10+
* Pickup Fulfillments, SearchOrders, and ServiceCharges move from BETA to GA.
11+
* New BETA endpoint: Orders.UpdateOrder — use the UpdateOrder endpoint to update existing orders.
12+
* New BETA functionality: Create shipment-type fulfillments.
13+
* **New functionality**: Locations.RetrieveLocation — use the RetrieveLocation endpoint to load details for a specific Location.
14+
315
## Version 2.21.0 (2019-07-24)
416

517
* **BETA releases**:

README.md

+78-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
Square Connect C# SDK [![Build Status](https://travis-ci.org/square/connect-csharp-sdk.svg?branch=master)](https://travis-ci.org/square/connect-csharp-sdk)[![NuGet version](https://badge.fury.io/nu/Square.Connect.svg)](https://badge.fury.io/nu/Square.Connect)
1+
![Square logo]
2+
3+
# Square Connect .NET SDK
4+
5+
---
6+
7+
[![Build Status](https://travis-ci.org/square/connect-csharp-sdk.svg?branch=master)](https://travis-ci.org/square/connect-csharp-sdk)
8+
[![NuGet version](https://badge.fury.io/nu/Square.Connect.svg)](https://badge.fury.io/nu/Square.Connect)
9+
[![Apache-2 license](https://img.shields.io/badge/license-Apache2-brightgreen.svg)](https://www.apache.org/licenses/LICENSE-2.0)
210
==================
311

412
**If you have feedback about the new SDKs, or just want to talk to other Square Developers, request an invite to the new [slack community for Square Developers](https://squ.re/2GUW1SQ)**
@@ -125,6 +133,29 @@ namespace Example
125133
```
126134
More examples are available at [connect-api-examples](https://github.com/square/connect-api-examples)
127135

136+
### How to configure sandbox environment
137+
```csharp
138+
using System;
139+
using System.Diagnostics;
140+
using Square.Connect.Api;
141+
using Square.Connect.Client;
142+
using Square.Connect.Model;
143+
144+
namespace Example
145+
{
146+
public class Example
147+
{
148+
readonly Configuration configuration;
149+
public Example()
150+
{
151+
this.configuration = new Configuration(new ApiClient("https://connect.squareupsandbox.com"));
152+
this.configuration.AccessToken = "YOUR_SANDBOX_ACCESS_TOKEN";
153+
LocationsApi locationsApi = new LocationsApi(this.configuration);
154+
}
155+
}
156+
}
157+
```
158+
128159
## Documentation for API Endpoints
129160

130161
All URIs are relative to [Square Connect Documentation](https://docs.connect.squareup.com/)
@@ -182,7 +213,18 @@ Class | Method | HTTP request
182213
*OAuthApi* | [**RevokeToken**](docs/OAuthApi.md#revoketoken) | **POST** /oauth2/revoke
183214
*OrdersApi* | [**BatchRetrieveOrders**](docs/OrdersApi.md#batchretrieveorders) | **POST** /v2/locations/{location_id}/orders/batch-retrieve
184215
*OrdersApi* | [**CreateOrder**](docs/OrdersApi.md#createorder) | **POST** /v2/locations/{location_id}/orders
216+
*OrdersApi* | [**PayOrder**](docs/OrdersApi.md#payorder) | **POST** /v2/orders/{order_id}/pay
185217
*OrdersApi* | [**SearchOrders**](docs/OrdersApi.md#searchorders) | **POST** /v2/orders/search
218+
*OrdersApi* | [**UpdateOrder**](docs/OrdersApi.md#updateorder) | **PUT** /v2/locations/{location_id}/orders/{order_id}
219+
*PaymentsApi* | [**CancelPayment**](docs/PaymentsApi.md#cancelpayment) | **POST** /v2/payments/{payment_id}/cancel
220+
*PaymentsApi* | [**CancelPaymentByIdempotencyKey**](docs/PaymentsApi.md#cancelpaymentbyidempotencykey) | **POST** /v2/payments/cancel
221+
*PaymentsApi* | [**CompletePayment**](docs/PaymentsApi.md#completepayment) | **POST** /v2/payments/{payment_id}/complete
222+
*PaymentsApi* | [**CreatePayment**](docs/PaymentsApi.md#createpayment) | **POST** /v2/payments
223+
*PaymentsApi* | [**GetPayment**](docs/PaymentsApi.md#getpayment) | **GET** /v2/payments/{payment_id}
224+
*PaymentsApi* | [**ListPayments**](docs/PaymentsApi.md#listpayments) | **GET** /v2/payments
225+
*RefundsApi* | [**GetPaymentRefund**](docs/RefundsApi.md#getpaymentrefund) | **GET** /v2/refunds/{refund_id}
226+
*RefundsApi* | [**ListPaymentRefunds**](docs/RefundsApi.md#listpaymentrefunds) | **GET** /v2/refunds
227+
*RefundsApi* | [**RefundPayment**](docs/RefundsApi.md#refundpayment) | **POST** /v2/refunds
186228
*ReportingApi* | [**ListAdditionalRecipientReceivableRefunds**](docs/ReportingApi.md#listadditionalrecipientreceivablerefunds) | **GET** /v2/locations/{location_id}/additional-recipient-receivable-refunds
187229
*ReportingApi* | [**ListAdditionalRecipientReceivables**](docs/ReportingApi.md#listadditionalrecipientreceivables) | **GET** /v2/locations/{location_id}/additional-recipient-receivables
188230
*TransactionsApi* | [**CaptureTransaction**](docs/TransactionsApi.md#capturetransaction) | **POST** /v2/locations/{location_id}/transactions/{transaction_id}/capture
@@ -269,6 +311,7 @@ Class | Method | HTTP request
269311
- [Model.AdditionalRecipientReceivable](docs/AdditionalRecipientReceivable.md)
270312
- [Model.AdditionalRecipientReceivableRefund](docs/AdditionalRecipientReceivableRefund.md)
271313
- [Model.Address](docs/Address.md)
314+
- [Model.BalancePaymentDetails](docs/BalancePaymentDetails.md)
272315
- [Model.BatchChangeInventoryRequest](docs/BatchChangeInventoryRequest.md)
273316
- [Model.BatchChangeInventoryResponse](docs/BatchChangeInventoryResponse.md)
274317
- [Model.BatchDeleteCatalogObjectsRequest](docs/BatchDeleteCatalogObjectsRequest.md)
@@ -286,9 +329,14 @@ Class | Method | HTTP request
286329
- [Model.BreakType](docs/BreakType.md)
287330
- [Model.BusinessHours](docs/BusinessHours.md)
288331
- [Model.BusinessHoursPeriod](docs/BusinessHoursPeriod.md)
332+
- [Model.CancelPaymentByIdempotencyKeyRequest](docs/CancelPaymentByIdempotencyKeyRequest.md)
333+
- [Model.CancelPaymentByIdempotencyKeyResponse](docs/CancelPaymentByIdempotencyKeyResponse.md)
334+
- [Model.CancelPaymentRequest](docs/CancelPaymentRequest.md)
335+
- [Model.CancelPaymentResponse](docs/CancelPaymentResponse.md)
289336
- [Model.CaptureTransactionRequest](docs/CaptureTransactionRequest.md)
290337
- [Model.CaptureTransactionResponse](docs/CaptureTransactionResponse.md)
291338
- [Model.Card](docs/Card.md)
339+
- [Model.CardPaymentDetails](docs/CardPaymentDetails.md)
292340
- [Model.CatalogCategory](docs/CatalogCategory.md)
293341
- [Model.CatalogDiscount](docs/CatalogDiscount.md)
294342
- [Model.CatalogIdMapping](docs/CatalogIdMapping.md)
@@ -328,6 +376,8 @@ Class | Method | HTTP request
328376
- [Model.ChargeRequestAdditionalRecipient](docs/ChargeRequestAdditionalRecipient.md)
329377
- [Model.ChargeResponse](docs/ChargeResponse.md)
330378
- [Model.Checkout](docs/Checkout.md)
379+
- [Model.CompletePaymentRequest](docs/CompletePaymentRequest.md)
380+
- [Model.CompletePaymentResponse](docs/CompletePaymentResponse.md)
331381
- [Model.Coordinates](docs/Coordinates.md)
332382
- [Model.CreateBreakTypeRequest](docs/CreateBreakTypeRequest.md)
333383
- [Model.CreateBreakTypeResponse](docs/CreateBreakTypeResponse.md)
@@ -345,6 +395,8 @@ Class | Method | HTTP request
345395
- [Model.CreateOrderRequestModifier](docs/CreateOrderRequestModifier.md)
346396
- [Model.CreateOrderRequestTax](docs/CreateOrderRequestTax.md)
347397
- [Model.CreateOrderResponse](docs/CreateOrderResponse.md)
398+
- [Model.CreatePaymentRequest](docs/CreatePaymentRequest.md)
399+
- [Model.CreatePaymentResponse](docs/CreatePaymentResponse.md)
348400
- [Model.CreateRefundRequest](docs/CreateRefundRequest.md)
349401
- [Model.CreateRefundResponse](docs/CreateRefundResponse.md)
350402
- [Model.CreateShiftRequest](docs/CreateShiftRequest.md)
@@ -375,6 +427,10 @@ Class | Method | HTTP request
375427
- [Model.GetBreakTypeResponse](docs/GetBreakTypeResponse.md)
376428
- [Model.GetEmployeeWageRequest](docs/GetEmployeeWageRequest.md)
377429
- [Model.GetEmployeeWageResponse](docs/GetEmployeeWageResponse.md)
430+
- [Model.GetPaymentRefundRequest](docs/GetPaymentRefundRequest.md)
431+
- [Model.GetPaymentRefundResponse](docs/GetPaymentRefundResponse.md)
432+
- [Model.GetPaymentRequest](docs/GetPaymentRequest.md)
433+
- [Model.GetPaymentResponse](docs/GetPaymentResponse.md)
378434
- [Model.GetShiftRequest](docs/GetShiftRequest.md)
379435
- [Model.GetShiftResponse](docs/GetShiftResponse.md)
380436
- [Model.InventoryAdjustment](docs/InventoryAdjustment.md)
@@ -399,6 +455,10 @@ Class | Method | HTTP request
399455
- [Model.ListEmployeesResponse](docs/ListEmployeesResponse.md)
400456
- [Model.ListLocationsRequest](docs/ListLocationsRequest.md)
401457
- [Model.ListLocationsResponse](docs/ListLocationsResponse.md)
458+
- [Model.ListPaymentRefundsRequest](docs/ListPaymentRefundsRequest.md)
459+
- [Model.ListPaymentRefundsResponse](docs/ListPaymentRefundsResponse.md)
460+
- [Model.ListPaymentsRequest](docs/ListPaymentsRequest.md)
461+
- [Model.ListPaymentsResponse](docs/ListPaymentsResponse.md)
402462
- [Model.ListRefundsRequest](docs/ListRefundsRequest.md)
403463
- [Model.ListRefundsResponse](docs/ListRefundsResponse.md)
404464
- [Model.ListTransactionsRequest](docs/ListTransactionsRequest.md)
@@ -417,7 +477,10 @@ Class | Method | HTTP request
417477
- [Model.OrderFulfillment](docs/OrderFulfillment.md)
418478
- [Model.OrderFulfillmentPickupDetails](docs/OrderFulfillmentPickupDetails.md)
419479
- [Model.OrderFulfillmentRecipient](docs/OrderFulfillmentRecipient.md)
480+
- [Model.OrderFulfillmentShipmentDetails](docs/OrderFulfillmentShipmentDetails.md)
420481
- [Model.OrderLineItem](docs/OrderLineItem.md)
482+
- [Model.OrderLineItemAppliedDiscount](docs/OrderLineItemAppliedDiscount.md)
483+
- [Model.OrderLineItemAppliedTax](docs/OrderLineItemAppliedTax.md)
421484
- [Model.OrderLineItemDiscount](docs/OrderLineItemDiscount.md)
422485
- [Model.OrderLineItemModifier](docs/OrderLineItemModifier.md)
423486
- [Model.OrderLineItemTax](docs/OrderLineItemTax.md)
@@ -432,7 +495,14 @@ Class | Method | HTTP request
432495
- [Model.OrderRoundingAdjustment](docs/OrderRoundingAdjustment.md)
433496
- [Model.OrderServiceCharge](docs/OrderServiceCharge.md)
434497
- [Model.OrderSource](docs/OrderSource.md)
498+
- [Model.PayOrderRequest](docs/PayOrderRequest.md)
499+
- [Model.PayOrderResponse](docs/PayOrderResponse.md)
500+
- [Model.Payment](docs/Payment.md)
501+
- [Model.PaymentRefund](docs/PaymentRefund.md)
502+
- [Model.ProcessingFee](docs/ProcessingFee.md)
435503
- [Model.Refund](docs/Refund.md)
504+
- [Model.RefundPaymentRequest](docs/RefundPaymentRequest.md)
505+
- [Model.RefundPaymentResponse](docs/RefundPaymentResponse.md)
436506
- [Model.RegisterDomainRequest](docs/RegisterDomainRequest.md)
437507
- [Model.RegisterDomainResponse](docs/RegisterDomainResponse.md)
438508
- [Model.RenewTokenRequest](docs/RenewTokenRequest.md)
@@ -451,6 +521,8 @@ Class | Method | HTTP request
451521
- [Model.RetrieveInventoryCountResponse](docs/RetrieveInventoryCountResponse.md)
452522
- [Model.RetrieveInventoryPhysicalCountRequest](docs/RetrieveInventoryPhysicalCountRequest.md)
453523
- [Model.RetrieveInventoryPhysicalCountResponse](docs/RetrieveInventoryPhysicalCountResponse.md)
524+
- [Model.RetrieveLocationRequest](docs/RetrieveLocationRequest.md)
525+
- [Model.RetrieveLocationResponse](docs/RetrieveLocationResponse.md)
454526
- [Model.RetrieveTransactionRequest](docs/RetrieveTransactionRequest.md)
455527
- [Model.RetrieveTransactionResponse](docs/RetrieveTransactionResponse.md)
456528
- [Model.RevokeTokenRequest](docs/RevokeTokenRequest.md)
@@ -493,6 +565,8 @@ Class | Method | HTTP request
493565
- [Model.UpdateItemModifierListsResponse](docs/UpdateItemModifierListsResponse.md)
494566
- [Model.UpdateItemTaxesRequest](docs/UpdateItemTaxesRequest.md)
495567
- [Model.UpdateItemTaxesResponse](docs/UpdateItemTaxesResponse.md)
568+
- [Model.UpdateOrderRequest](docs/UpdateOrderRequest.md)
569+
- [Model.UpdateOrderResponse](docs/UpdateOrderResponse.md)
496570
- [Model.UpdateShiftRequest](docs/UpdateShiftRequest.md)
497571
- [Model.UpdateShiftResponse](docs/UpdateShiftResponse.md)
498572
- [Model.UpdateWorkweekConfigRequest](docs/UpdateWorkweekConfigRequest.md)
@@ -743,3 +817,6 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
743817
See the License for the specific language governing permissions and
744818
limitations under the License.
745819
```
820+
821+
[//]: # "Link anchor definitions"
822+
[Square Logo]: https://docs.connect.squareup.com/images/github/github-square-logo.svg

docs/BalancePaymentDetails.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Square.Connect.Model.BalancePaymentDetails
2+
3+
### Description
4+
5+
Reflects the current status of a balance payment.
6+
7+
## Properties
8+
9+
Name | Type | Description | Notes
10+
------------ | ------------- | ------------- | -------------
11+
**AccountId** | **string** | ID for the account used to fund the payment. | [optional]
12+
**Status** | **string** | The balance payment’s current state. Can be `COMPLETED` or `FAILED`. | [optional]
13+
14+
15+
16+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
17+

docs/BatchRetrieveOrdersResponse.md

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ Name | Type | Description | Notes
1010
------------ | ------------- | ------------- | -------------
1111
**Orders** | [**List<Order>**](Order.md) | The requested orders. This will omit any requested orders that do not exist or are not charged. | [optional]
1212
**Errors** | [**List<Error>**](Error.md) | Any errors that occurred during the request. | [optional]
13-
**UnconvertibleTransactionIds** | **List<string>** | List of transaction ids within the requested set of ids that encountered transformation issues when being converted to an Order. | [optional]
1413

1514

1615

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Square.Connect.Model.CancelPaymentByIdempotencyKeyRequest
2+
3+
### Description
4+
5+
Specifies idempotency key of a payment to cancel.
6+
7+
## Properties
8+
9+
Name | Type | Description | Notes
10+
------------ | ------------- | ------------- | -------------
11+
**IdempotencyKey** | **string** | &#x60;idempotency_key&#x60; identifying the payment to be canceled. |
12+
13+
14+
15+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
16+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Square.Connect.Model.CancelPaymentByIdempotencyKeyResponse
2+
3+
### Description
4+
5+
Return value from the [CancelPaymentByIdempotencyKey](#endpoint-payments-cancelpaymentbyidempotencykey) endpoint. On success, `errors` will be empty.
6+
7+
## Properties
8+
9+
Name | Type | Description | Notes
10+
------------ | ------------- | ------------- | -------------
11+
**Errors** | [**List&lt;Error&gt;**](Error.md) | Any errors that occurred during the request. | [optional]
12+
13+
14+
15+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
16+

docs/CancelPaymentRequest.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Square.Connect.Model.CancelPaymentRequest
2+
3+
### Description
4+
5+
Cancels a payment before it has been completed. Note: only payments created with `autocomplete` set to false can be canceled.
6+
7+
## Properties
8+
9+
Name | Type | Description | Notes
10+
------------ | ------------- | ------------- | -------------
11+
12+
13+
14+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
15+

docs/CancelPaymentResponse.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Square.Connect.Model.CancelPaymentResponse
2+
3+
### Description
4+
5+
Return value from the [CancelPayment](#endpoint-payments-cancelpayment) endpoint.
6+
7+
## Properties
8+
9+
Name | Type | Description | Notes
10+
------------ | ------------- | ------------- | -------------
11+
**Errors** | [**List&lt;Error&gt;**](Error.md) | Information on errors encountered during the request. | [optional]
12+
**Payment** | [**Payment**](Payment.md) | The successfully canceled &#x60;Payment&#x60; object. | [optional]
13+
14+
15+
16+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
17+

docs/CaptureTransactionResponse.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
### Description
44

5-
Defines the fields that are included in the response body of a request to the CaptureTransaction endpoint.
5+
Defines the fields that are included in the response body of a request to the [CaptureTransaction](#endpoint-capturetransaction) endpoint.
66

77
## Properties
88

docs/CardPaymentDetails.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Square.Connect.Model.CardPaymentDetails
2+
3+
### Description
4+
5+
Reflects the current status of a card payment.
6+
7+
## Properties
8+
9+
Name | Type | Description | Notes
10+
------------ | ------------- | ------------- | -------------
11+
**Status** | **string** | The card payment&#39;s current state. It can be one of: &#x60;AUTHORIZED&#x60;, &#x60;CAPTURED&#x60;, &#x60;VOIDED&#x60;, &#x60;FAILED&#x60;. | [optional]
12+
**Card** | [**Card**](Card.md) | The credit card&#39;s non-confidential details. | [optional]
13+
**EntryMethod** | **string** | The method used to enter the card&#39;s details for the payment. Can be &#x60;KEYED&#x60;, &#x60;SWIPED&#x60;, &#x60;EMV&#x60;, &#x60;ON_FILE&#x60;, or &#x60;CONTACTLESS&#x60;. | [optional]
14+
**CvvStatus** | **string** | Status code returned from the Card Verification Value (CVV) check. | [optional]
15+
**AvsStatus** | **string** | Status code returned from the Address Verification System (AVS) check. | [optional]
16+
**AuthResultCode** | **string** | Status code returned by the card issuer that describes the payment&#39;s authorization status. | [optional]
17+
**ApplicationIdentifier** | **string** | For EMV payments, identifies the EMV application used for the payment | [optional]
18+
**ApplicationName** | **string** | For EMV payments, the human-readable name of the EMV application used for the payment. | [optional]
19+
**ApplicationCryptogram** | **string** | For EMV payments, the cryptogram generated for the payment. | [optional]
20+
**Errors** | [**List&lt;Error&gt;**](Error.md) | Information on errors encountered during the request. | [optional]
21+
22+
23+
24+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
25+

docs/ChargeRequest.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
### Description
44

5-
Defines the parameters that can be included in the body of a request to the Charge endpoint.
5+
Defines the parameters that can be included in the body of a request to the [Charge](#endpoint-charge) endpoint. Deprecated - recommend using [CreatePayment](#endpoint-payments-createpayment)
66

77
## Properties
88

docs/ChargeResponse.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
### Description
44

5-
Defines the fields that are included in the response body of a request to the Charge endpoint. One of `errors` or `transaction` is present in a given response (never both).
5+
Defines the fields that are included in the response body of a request to the [Charge](#endpoint-charge) endpoint. One of `errors` or `transaction` is present in a given response (never both).
66

77
## Properties
88

docs/CompletePaymentRequest.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Square.Connect.Model.CompletePaymentRequest
2+
3+
### Description
4+
5+
Completes a payment. By default, payments are set to autocomplete immediately after they are created. To complete payments manually, set `autocomplete` to false.
6+
7+
## Properties
8+
9+
Name | Type | Description | Notes
10+
------------ | ------------- | ------------- | -------------
11+
12+
13+
14+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
15+

docs/CompletePaymentResponse.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Square.Connect.Model.CompletePaymentResponse
2+
3+
### Description
4+
5+
Return value from a [CompletePayment](#endpoint-payments-completepayment) call.
6+
7+
## Properties
8+
9+
Name | Type | Description | Notes
10+
------------ | ------------- | ------------- | -------------
11+
**Errors** | [**List&lt;Error&gt;**](Error.md) | Information on errors encountered during the request | [optional]
12+
**Payment** | [**Payment**](Payment.md) | The successfully completed &#x60;Payment&#x60;. | [optional]
13+
14+
15+
16+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
17+

0 commit comments

Comments
 (0)