Difference between revisions of "Subscription"
Jump to navigation
Jump to search
Line 147: | Line 147: | ||
! Upgrade | ! Upgrade | ||
{{!}} Array of int | {{!}} Array of int | ||
− | {{!}} | + | {{!}} Returns an array of Subscription IDs that this Subscription has '''upgrade'''' relationship with. |
{{!}}- valign="top" | {{!}}- valign="top" | ||
! Incompatible | ! Incompatible | ||
{{!}} Array of int | {{!}} Array of int | ||
− | {{!}} | + | {{!}} Returns an array of Subscription IDs that this Subscription has '''incompatible'''' relationship with. |
{{!}}- valign="top" | {{!}}- valign="top" | ||
! RequiredDays | ! RequiredDays | ||
{{!}} int | {{!}} int | ||
− | {{!}} | + | {{!}} Number of days since the purchase that the user will not be able to perform upgrade operations having this subscription purchased until the time passes. Applications should use this information combined with [[CanWatch]] information to block users from purchasing subscriptions that have upgrade relationship with a Subscription that has not passed the required days. |
{{!}}- valign="top" | {{!}}- valign="top" | ||
Latest revision as of 21:30, 23 March 2015
Represents a Subscription object. Subscriptions are packages that the user can purchase and provide access to other products such as Movies, Live Channels, Services, etc. The Subscription will always have a recurring pricing model associated.
Members
Field | Data Type | Description |
---|---|---|
ID | int | Unique identifier for the Subscription |
Title | String | The title for the subscription that will be shown to end users |
Description | String | A long description of the subscription that will be shown to end users. |
ShortDescription | String | A short description of the subscription that will be shown to end users. |
DateStart | int | The commercialization start date (in Unix Timestamp) of the subscription. Out of this time, the subscription cannot be purchased. |
DateEnd | int | The commercialization end date (in Unix Timestamp) of the subscription. Out of this time, the subscription cannot be purchased. |
Icon | Image object | DEPRECATED. Since GVP 2.4, this object will not be returned anymore. Only ResizableImages will be returned. |
Banner | Image object | DEPRECATED. Since GVP 2.4, this object will not be returned anymore. Only ResizableImages will be returned. |
Type | int | Represents the subscription type (enumeration). See SubscriptionType enumeration for more information. |
Status | int | Represents the subscription status (enumeration). See SubscriptionStatus enumeration for more information. |
TrialDays | int | DEPRECATED. Since GVP 2.4, this object will not be returned anymore inside Subcription object. |
Images | Array of Image object | DEPRECATED. Since GVP 2.3, the Thumbox Service should be used to perform dynamic resizing of images. For backwards compatibility, the resized images will be returned by providing the thumbox url for the images with the different sizes defined in GVP_IMAGE_PROFILE_PRODUCT_TYPE table in MIB. |
ResizableImages | Array of Image object | It provides the list of original images (non resized) associated with this Subscription. The application should use the Thumbox Service to perform dynamic resizing of the images in order to adapt them to the User Interface. |
PurchaseType | int | Represents the Purchase Type of this subscription (BottomUp, TD or Both). See SubscriptionPurchaseType enumeration for more information. |
Age Rating | InstanceAgeRating object | DEPRECATED. Since GVP 2.4, this object will not be returned anymore inside Subcription object. |
Stars | int | DEPRECATED. Since GVP 2.4, this object will not be returned anymore inside Subcription object. |
Tags | Array of UserTags object | DEPRECATED. Since GVP 2.4, this object will not be returned anymore inside Subcription object. |
CanWatch | AccessReason object | Indicates the grants of this subscription for the current user. Provides the information if the user owns this Subscription, the pricing model used, etc. |
CanAcquire | bool | Indicates if the user is able to purchase this subscription. The logic for calculating this is based on. |
HaveVoDAccess | bool | Same as CanAcquire property, but.. |
ChildCount | int | Indicates the count of objects that this Subscription provides. |
DateIns | int | DEPRECATED. Since GVP 2.4, this object will not be returned anymore inside Subcription object. |
MediaRoomSync | bool | DEPRECATED. Since GVP 2.4, this object will not be returned anymore inside Subcription object. |
IsOtt | bool | DEPRECATED. Since GVP 2.4, this object will not be returned anymore inside Subcription object. |
IsIptv | bool | DEPRECATED. Since GVP 2.4, this object will not be returned anymore inside Subcription object. |
IsHybrid | bool | DEPRECATED. Since GVP 2.4, this object will not be returned anymore inside Subcription object. |
UpdateSender | bool | DEPRECATED. Since GVP 2.4, this object will not be returned anymore inside Subcription object. |
Upgrade | Array of int | Returns an array of Subscription IDs that this Subscription has upgrade' relationship with. |
Incompatible | Array of int | Returns an array of Subscription IDs that this Subscription has incompatible' relationship with. |
RequiredDays | int | Number of days since the purchase that the user will not be able to perform upgrade operations having this subscription purchased until the time passes. Applications should use this information combined with CanWatch information to block users from purchasing subscriptions that have upgrade relationship with a Subscription that has not passed the required days. |
ExternalUrl | String | New in GVP 3.0 - Return an String with the External Url for device use as a subscription page. |
Example
{
- "ID": 51,
- "Title": "GVP2.0_RFA_SG_TSA",
- "Description": "Description for GVP2.0_RFA_SG_TSA\r\nUsed for GVP2.0 RFA tets cases",
- "ShortDescription": "Short description about this purchase",
- "DateStart": 1339538400,
- "DateEnd": 1434751200,
- "Type": 1,
- "Status": 1,
- "TrialDays": 0,
- "Images": [
- Array of Image object
- ],
- "ResizableImages": [
- Array of Image object
- ],
- "PurchaseType": 3,
- "CanWatch": {
- AccessReason Object
- },
- "CanAcquire": true,
- "HaveVoDAccess": true,
- "ChildCount": 1,
- "IsOtt": true,
- "IsIptv": false,
- "IsHybrid": false,
- "Upgrade": [13,14],
- "Incompatible": [12,32,43,54,55],
- "RequiredDays": 45,
- "ExternalUrl": "http://www.tid.es",
}
Known issues
None
Version history
API Version Number | Change description | Changes author |
---|---|---|
1.0 | Initial data type implementation | Harley Cabral |
2.3 | ResizableImages object added (for Thumbox resizing) | Francisco Milagro |
2.4 | Deprecated some member fields:
|
Francisco Milagro |
3.0 | Add field to GVP 3.0
|
Ricardo Calvo |
See also
- SubscriptionType enumeration
- SubscriptionStatus enumeration
- SubscriptionPurchaseType enumeration
- Image object
- AccessReason object
- SubscriptionService methods
- Thumbox Service for image resizing