countBuyTicketInformation property
Number of buy-ticket information entries available for this route.
Use getBuyTicketInformation to retrieve each PTBuyTicketInformation by index.
Returns
int: Number of available PTBuyTicketInformation records.
See also:
- getBuyTicketInformation - retrieve buy-ticket information by index.
Implementation
int get countBuyTicketInformation {
final OperationResult resultString = objectMethod(
pointerId,
'PTRoute',
'getCountBuyTicketInformation',
);
return resultString['result'];
}