Files
kulakpos_web/vendor/mercadopago/dx-php/src/MercadoPago/Entities/Subscription.php
triagungbiantoro 417b7b7453
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m27s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 31s
Build, Push and Deploy / deploy-production (push) Has been skipped
harga pada beranda terhubung ke manage plans di dashboard admin
2026-04-25 21:57:25 +07:00

127 lines
1.8 KiB
PHP
Executable File

<?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;
}