allow vendord
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 32s
Build, Push and Deploy / deploy-production (push) Has been skipped
Build, Push and Deploy / cleanup (push) Successful in 1s
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 32s
Build, Push and Deploy / deploy-production (push) Has been skipped
Build, Push and Deploy / cleanup (push) Successful in 1s
This commit is contained in:
126
vendor/mercadopago/dx-php/src/MercadoPago/Entities/Subscription.php
vendored
Normal file
126
vendor/mercadopago/dx-php/src/MercadoPago/Entities/Subscription.php
vendored
Normal file
@@ -0,0 +1,126 @@
|
||||
<?php
|
||||
/**
|
||||
* Subscription class file
|
||||
*/
|
||||
namespace MercadoPago;
|
||||
|
||||
use MercadoPago\Annotation\RestMethod;
|
||||
use MercadoPago\Annotation\RequestParam;
|
||||
use MercadoPago\Annotation\Attribute;
|
||||
|
||||
/**
|
||||
* Subscription class
|
||||
* @RestMethod(resource="/v1/subscriptions/:id", method="read")
|
||||
* @RestMethod(resource="/v1/subscriptions/", method="create")
|
||||
* @RestMethod(resource="/v1/subscriptions/:id", method="update")
|
||||
*/
|
||||
|
||||
class Subscription extends Entity
|
||||
{
|
||||
|
||||
/**
|
||||
* id
|
||||
* @Attribute()
|
||||
* @var string
|
||||
*/
|
||||
protected $id;
|
||||
|
||||
/**
|
||||
* plan_id
|
||||
* @Attribute()
|
||||
* @var string
|
||||
*/
|
||||
protected $plan_id;
|
||||
|
||||
/**
|
||||
* payer
|
||||
* @Attribute()
|
||||
* @var object
|
||||
*/
|
||||
protected $payer;
|
||||
|
||||
/**
|
||||
* application_fee
|
||||
* @Attribute()
|
||||
* @var float
|
||||
*/
|
||||
protected $application_fee;
|
||||
|
||||
/**
|
||||
* status
|
||||
* @Attribute()
|
||||
* @var string
|
||||
*/
|
||||
protected $status;
|
||||
|
||||
/**
|
||||
* description
|
||||
* @Attribute()
|
||||
* @var string
|
||||
*/
|
||||
protected $description;
|
||||
|
||||
/**
|
||||
* external_reference
|
||||
* @Attribute()
|
||||
* @var string
|
||||
*/
|
||||
protected $external_reference;
|
||||
|
||||
/**
|
||||
* date_created
|
||||
* @Attribute()
|
||||
* @var \DateTime
|
||||
*/
|
||||
protected $date_created;
|
||||
|
||||
/**
|
||||
* last_modified
|
||||
* @Attribute()
|
||||
* @var \DateTime
|
||||
*/
|
||||
protected $last_modified;
|
||||
|
||||
/**
|
||||
* live_mode
|
||||
* @Attribute()
|
||||
* @var boolean
|
||||
*/
|
||||
protected $live_mode;
|
||||
|
||||
/**
|
||||
* start_date
|
||||
* @Attribute()
|
||||
* @var \DateTime
|
||||
*/
|
||||
protected $start_date;
|
||||
|
||||
/**
|
||||
* end_date
|
||||
* @Attribute()
|
||||
* @var \DateTime
|
||||
*/
|
||||
protected $end_date;
|
||||
|
||||
/**
|
||||
* metadata
|
||||
* @Attribute()
|
||||
* @var object
|
||||
*/
|
||||
protected $metadata;
|
||||
|
||||
/**
|
||||
* charge_detail
|
||||
* @Attribute()
|
||||
* @var object
|
||||
*/
|
||||
protected $charges_detail;
|
||||
|
||||
/**
|
||||
* setup_fee
|
||||
* @Attribute()
|
||||
* @var float
|
||||
*/
|
||||
protected $setup_fee;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user