countBuyTicketInformation property

int get countBuyTicketInformation

Number of buy-ticket information entries available for this route.

Use getBuyTicketInformation to retrieve each PTBuyTicketInformation by index.

Returns

See also:

Implementation

int get countBuyTicketInformation {
  final OperationResult resultString = objectMethod(
    pointerId,
    'PTRoute',
    'getCountBuyTicketInformation',
  );

  return resultString['result'];
}