## The list of subscriptions. The list is ordered by the oldest subscription first. The list is empty if the client hasn't created subscriptions or there are no subscriptions that match the specified filter criteria.
@exportvardata:Array[TwitchEventSubSubscription]:
set(val):
data=val
track_data(&"data",val)
## The total number of subscriptions that you've created.
@exportvartotal:int:
set(val):
total=val
track_data(&"total",val)
## The sum of all of your subscription costs. [Learn More](https://dev.twitch.tv/docs/eventsub/manage-subscriptions/#subscription-limits)
@exportvartotal_cost:int:
set(val):
total_cost=val
track_data(&"total_cost",val)
## The maximum total cost that you're allowed to incur for all subscriptions that you create.
@exportvarmax_total_cost:int:
set(val):
max_total_cost=val
track_data(&"max_total_cost",val)
## An object that contains the cursor used to get the next page of subscriptions. The object is empty if there are no more pages to get. The number of subscriptions returned per page is undertermined.
## An object that contains the cursor used to get the next page of subscriptions. The object is empty if there are no more pages to get. The number of subscriptions returned per page is undertermined.