Skip to content

Commit

Permalink
Adds bank transfer payemnt in checkout payment
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelo-marini committed Oct 5, 2018
1 parent 1c00e9f commit 52747d9
Show file tree
Hide file tree
Showing 37 changed files with 797 additions and 567 deletions.
128 changes: 79 additions & 49 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Getting started

Mundipagg API
# Getting started

Mundipagg API

## How to Build

Expand Down Expand Up @@ -128,7 +128,7 @@ $client = new MundiAPILib\MundiAPIClient($basicAuthUserName, $basicAuthPassword)
```


# Class Reference
# Class Reference

## <a name="list_of_controllers"></a>List of Controllers

Expand Down Expand Up @@ -596,8 +596,8 @@ function getSubscriptions(
#### Example Usage

```php
$page = 158;
$size = 158;
$page = 17;
$size = 17;
$code = 'code';
$billingType = 'billing_type';
$customerId = 'customer_id';
Expand Down Expand Up @@ -829,8 +829,8 @@ function getDiscounts(

```php
$subscriptionId = 'subscription_id';
$page = 158;
$size = 158;
$page = 17;
$size = 17;

$result = $subscriptions->getDiscounts($subscriptionId, $page, $size);

Expand Down Expand Up @@ -894,9 +894,8 @@ function getIncrements(

```php
$subscriptionId = 'subscription_id';

$page = 158;
$size = 158;
$page = 108;
$size = 108;

$result = $subscriptions->getIncrements($subscriptionId, $page, $size);

Expand Down Expand Up @@ -967,8 +966,8 @@ function getUsagesDetails(
```php
$subscriptionId = 'subscription_id';
$cycleId = 'cycle_id';
$size = 158;
$page = 158;
$size = 108;
$page = 108;
$itemId = 'item_id';
$group = 'group';

Expand Down Expand Up @@ -1010,9 +1009,8 @@ function getUsages(
```php
$subscriptionId = 'subscription_id';
$itemId = 'item_id';

$page = 158;
$size = 158;
$page = 108;
$size = 108;
$code = 'code';
$group = 'group';

Expand Down Expand Up @@ -1059,8 +1057,8 @@ function getSubscriptionItems(

```php
$subscriptionId = 'subscription_id';
$page = 158;
$size = 158;
$page = 108;
$size = 108;
$name = 'name';
$code = 'code';
$status = 'status';
Expand Down Expand Up @@ -1166,7 +1164,38 @@ $result = $subscriptions->updateSubscriptionBillingDate($subscriptionId, $reques
```


[Back to List of Controllers](#list_of_controllers)
### <a name="update_current_cycle_end_date"></a>![Method: ](https://apidocs.io/img/method.png ".SubscriptionsController.updateCurrentCycleEndDate") updateCurrentCycleEndDate

> TODO: Add a method description

```php
function updateCurrentCycleEndDate(
$subscriptionId,
$request)
```

#### Parameters

| Parameter | Tags | Description |
|-----------|------|-------------|
| subscriptionId | ``` Required ``` | TODO: Add a parameter description |
| request | ``` Required ``` | Request for updating the end date of the current signature cycle |



#### Example Usage

```php
$subscriptionId = 'subscription_id';
$request = new UpdateCurrentCycleEndDateRequest();

$result = $subscriptions->updateCurrentCycleEndDate($subscriptionId, $request);

```


[Back to List of Controllers](#list_of_controllers)

## <a name="orders_controller"></a>![Class: ](https://apidocs.io/img/class.png ".OrdersController") OrdersController

Expand Down Expand Up @@ -1265,8 +1294,8 @@ function getOrders(
#### Example Usage

```php
$page = 200;
$size = 200;
$page = 108;
$size = 108;
$code = 'code';
$status = 'status';
$createdSince = date("D M d, Y G:i");
Expand Down Expand Up @@ -1494,7 +1523,7 @@ $result = $orders->updateOrderStatus($id, $request);
```


[Back to List of Controllers](#list_of_controllers)
[Back to List of Controllers](#list_of_controllers)

## <a name="plans_controller"></a>![Class: ](https://apidocs.io/img/class.png ".PlansController") PlansController

Expand Down Expand Up @@ -1716,8 +1745,8 @@ function getPlans(
#### Example Usage

```php
$page = 109;
$size = 109;
$page = 108;
$size = 108;
$name = 'name';
$status = 'status';
$billingType = 'billing_type';
Expand Down Expand Up @@ -1822,7 +1851,7 @@ $result = $plans->deletePlanItem($planId, $planItemId);
```


[Back to List of Controllers](#list_of_controllers)
[Back to List of Controllers](#list_of_controllers)

## <a name="invoices_controller"></a>![Class: ](https://apidocs.io/img/class.png ".InvoicesController") InvoicesController

Expand Down Expand Up @@ -1989,8 +2018,8 @@ function getInvoices(
#### Example Usage

```php
$page = 109;
$size = 109;
$page = 67;
$size = 67;
$code = 'code';
$customerId = 'customer_id';
$subscriptionId = 'subscription_id';
Expand Down Expand Up @@ -2036,7 +2065,7 @@ $result = $invoices->updateInvoiceMetadata($invoiceId, $request);
```


[Back to List of Controllers](#list_of_controllers)
[Back to List of Controllers](#list_of_controllers)

## <a name="customers_controller"></a>![Class: ](https://apidocs.io/img/class.png ".CustomersController") CustomersController

Expand Down Expand Up @@ -2196,8 +2225,8 @@ function getAccessTokens(

```php
$customerId = 'customer_id';
$page = 109;
$size = 109;
$page = 67;
$size = 67;

$result = $customers->getAccessTokens($customerId, $page, $size);

Expand Down Expand Up @@ -2230,8 +2259,9 @@ function getAddresses(

```php
$customerId = 'customer_id';
$page = 109;
$size = 109;
$page = 67;
$size = 67;

$result = $customers->getAddresses($customerId, $page, $size);

```
Expand Down Expand Up @@ -2263,8 +2293,8 @@ function getCards(

```php
$customerId = 'customer_id';
$page = 109;
$size = 109;
$page = 67;
$size = 67;

$result = $customers->getCards($customerId, $page, $size);

Expand Down Expand Up @@ -2713,7 +2743,7 @@ $result = $customers->renewCard($customerId, $cardId);
```


[Back to List of Controllers](#list_of_controllers)
[Back to List of Controllers](#list_of_controllers)

## <a name="charges_controller"></a>![Class: ](https://apidocs.io/img/class.png ".ChargesController") ChargesController

Expand Down Expand Up @@ -2905,8 +2935,8 @@ function getCharges(
#### Example Usage

```php
$page = 17;
$size = 17;
$page = 158;
$size = 158;
$code = 'code';
$status = 'status';
$paymentMethod = 'payment_method';
Expand Down Expand Up @@ -3075,7 +3105,7 @@ $result = $charges->confirmPayment($chargeId, $request);
```


[Back to List of Controllers](#list_of_controllers)
[Back to List of Controllers](#list_of_controllers)

## <a name="recipients_controller"></a>![Class: ](https://apidocs.io/img/class.png ".RecipientsController") RecipientsController

Expand Down Expand Up @@ -3181,8 +3211,8 @@ function getTransfers(

```php
$recipientId = 'recipient_id';
$page = 17;
$size = 17;
$page = 158;
$size = 158;
$status = 'status';
$createdSince = date("D M d, Y G:i");
$createdUntil = date("D M d, Y G:i");
Expand Down Expand Up @@ -3326,8 +3356,8 @@ function getAnticipations(

```php
$recipientId = 'recipient_id';
$page = 59;
$size = 59;
$page = 250;
$size = 250;
$status = 'status';
$timeframe = 'timeframe';
$paymentDateSince = date("D M d, Y G:i");
Expand Down Expand Up @@ -3452,8 +3482,8 @@ function getRecipients(
#### Example Usage

```php
$page = 59;
$size = 59;
$page = 250;
$size = 250;

$result = $recipients->getRecipients($page, $size);

Expand Down Expand Up @@ -3576,7 +3606,7 @@ $result = $recipients->updateRecipientTransferSettings($recipientId, $request);
```


[Back to List of Controllers](#list_of_controllers)
[Back to List of Controllers](#list_of_controllers)

## <a name="tokens_controller"></a>![Class: ](https://apidocs.io/img/class.png ".TokensController") TokensController

Expand Down Expand Up @@ -3654,7 +3684,7 @@ $result = $tokens->createToken($publicKey, $request);
```


[Back to List of Controllers](#list_of_controllers)
[Back to List of Controllers](#list_of_controllers)

## <a name="sellers_controller"></a>![Class: ](https://apidocs.io/img/class.png ".SellersController") SellersController

Expand Down Expand Up @@ -3784,8 +3814,8 @@ function getSellers(
#### Example Usage

```php
$page = 59;
$size = 59;
$page = 250;
$size = 250;
$name = 'name';
$document = 'document';
$code = 'code';
Expand Down Expand Up @@ -3861,7 +3891,7 @@ $result = $sellers->updateSellerMetadata($sellerId, $request);
```


[Back to List of Controllers](#list_of_controllers)
[Back to List of Controllers](#list_of_controllers)



Loading

0 comments on commit 52747d9

Please sign in to comment.