|
| 1 | +<?php |
| 2 | +declare(strict_types=1); |
| 3 | + |
| 4 | +namespace Vindi\Payment\Api\Data; |
| 5 | + |
| 6 | +/** |
| 7 | + * Interface VindiSubscriptionItemInterface |
| 8 | + * @package Vindi\Payment\Api\Data |
| 9 | + */ |
| 10 | +interface VindiSubscriptionItemInterface |
| 11 | +{ |
| 12 | + const ENTITY_ID = 'entity_id'; |
| 13 | + const SUBSCRIPTION_ID = 'subscription_id'; |
| 14 | + const PRODUCT_ITEM_ID = 'product_item_id'; |
| 15 | + const PRODUCT_NAME = 'product_name'; |
| 16 | + const PRODUCT_CODE = 'product_code'; |
| 17 | + const QUANTITY = 'quantity'; |
| 18 | + const PRICE = 'price'; |
| 19 | + const PRICING_SCHEMA_ID = 'pricing_schema_id'; |
| 20 | + const PRICING_SCHEMA_TYPE = 'pricing_schema_type'; |
| 21 | + const PRICING_SCHEMA_FORMAT = 'pricing_schema_short_format'; |
| 22 | + const STATUS = 'status'; |
| 23 | + const USES = 'uses'; |
| 24 | + const CYCLES = 'cycles'; |
| 25 | + const DISCOUNT_TYPE = 'discount_type'; |
| 26 | + const DISCOUNT_PERCENTAGE = 'discount_percentage'; |
| 27 | + const MAGENTO_PRODUCT_ID = 'magento_product_id'; |
| 28 | + const MAGENTO_PRODUCT_SKU = 'magento_product_sku'; |
| 29 | + const CREATED_AT = 'created_at'; |
| 30 | + const UPDATED_AT = 'updated_at'; |
| 31 | + |
| 32 | + public function getId(); |
| 33 | + |
| 34 | + public function setId($entityId); |
| 35 | + |
| 36 | + public function getSubscriptionId(); |
| 37 | + |
| 38 | + public function setSubscriptionId($subscriptionId); |
| 39 | + |
| 40 | + public function getProductItemId(); |
| 41 | + |
| 42 | + public function setProductItemId($productItemId); |
| 43 | + |
| 44 | + public function getProductName(); |
| 45 | + |
| 46 | + public function setProductName($productName); |
| 47 | + |
| 48 | + public function getProductCode(); |
| 49 | + |
| 50 | + public function setProductCode($productCode); |
| 51 | + |
| 52 | + public function getQuantity(); |
| 53 | + |
| 54 | + public function setQuantity($quantity); |
| 55 | + |
| 56 | + public function getPrice(); |
| 57 | + |
| 58 | + public function setPrice($price); |
| 59 | + |
| 60 | + public function getPricingSchemaId(); |
| 61 | + |
| 62 | + public function setPricingSchemaId($pricingSchemaId); |
| 63 | + |
| 64 | + public function getPricingSchemaType(); |
| 65 | + |
| 66 | + public function setPricingSchemaType($pricingSchemaType); |
| 67 | + |
| 68 | + public function getPricingSchemaFormat(); |
| 69 | + |
| 70 | + public function setPricingSchemaFormat($pricingSchemaFormat); |
| 71 | + |
| 72 | + public function getStatus(); |
| 73 | + |
| 74 | + public function setStatus($status); |
| 75 | + |
| 76 | + public function getUses(); |
| 77 | + |
| 78 | + public function setUses($uses); |
| 79 | + |
| 80 | + public function getCycles(); |
| 81 | + |
| 82 | + public function setCycles($cycles); |
| 83 | + |
| 84 | + public function getDiscountType(); |
| 85 | + |
| 86 | + public function setDiscountType($discountType); |
| 87 | + |
| 88 | + public function getDiscountPercentage(); |
| 89 | + |
| 90 | + public function setDiscountPercentage($discountPercentage); |
| 91 | + |
| 92 | + public function getMagentoProductId(); |
| 93 | + |
| 94 | + public function setMagentoProductId($magentoProductId); |
| 95 | + |
| 96 | + public function getMagentoProductSku(); |
| 97 | + |
| 98 | + public function setMagentoProductSku($magentoProductSku); |
| 99 | + |
| 100 | + public function getCreatedAt(); |
| 101 | + |
| 102 | + public function setCreatedAt($createdAt); |
| 103 | + |
| 104 | + public function getUpdatedAt(); |
| 105 | + |
| 106 | + public function setUpdatedAt($updatedAt); |
| 107 | +} |
0 commit comments