Skip to content

Commit 554aab3

Browse files
1 parent e0018ae commit 554aab3

1 file changed

Lines changed: 43 additions & 16 deletions

File tree

src/Walletobjects/GenericObject.php

Lines changed: 43 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -24,57 +24,82 @@ class GenericObject extends \Google\Collection
2424
*/
2525
public const GENERIC_TYPE_GENERIC_TYPE_UNSPECIFIED = 'GENERIC_TYPE_UNSPECIFIED';
2626
/**
27-
* Season pass
27+
* Represents a season pass.
2828
*/
2929
public const GENERIC_TYPE_GENERIC_SEASON_PASS = 'GENERIC_SEASON_PASS';
3030
/**
31-
* Utility bills
31+
* Represents a utility bill.
3232
*/
3333
public const GENERIC_TYPE_GENERIC_UTILITY_BILLS = 'GENERIC_UTILITY_BILLS';
3434
/**
35-
* Parking pass
35+
* Represents a parking pass.
3636
*/
3737
public const GENERIC_TYPE_GENERIC_PARKING_PASS = 'GENERIC_PARKING_PASS';
3838
/**
39-
* Voucher
39+
* Represents a voucher.
4040
*/
4141
public const GENERIC_TYPE_GENERIC_VOUCHER = 'GENERIC_VOUCHER';
4242
/**
43-
* Gym membership cards
43+
* Represents a gym membership card.
4444
*/
4545
public const GENERIC_TYPE_GENERIC_GYM_MEMBERSHIP = 'GENERIC_GYM_MEMBERSHIP';
4646
/**
47-
* Library membership cards
47+
* Represents a library card.
4848
*/
4949
public const GENERIC_TYPE_GENERIC_LIBRARY_MEMBERSHIP = 'GENERIC_LIBRARY_MEMBERSHIP';
5050
/**
51-
* Reservations
51+
* Represents a reservation.
5252
*/
5353
public const GENERIC_TYPE_GENERIC_RESERVATIONS = 'GENERIC_RESERVATIONS';
5454
/**
55-
* Auto-insurance cards
55+
* Represents an auto-insurance card.
5656
*/
5757
public const GENERIC_TYPE_GENERIC_AUTO_INSURANCE = 'GENERIC_AUTO_INSURANCE';
5858
/**
59-
* Home-insurance cards
59+
* Represents a home-insurance card.
6060
*/
6161
public const GENERIC_TYPE_GENERIC_HOME_INSURANCE = 'GENERIC_HOME_INSURANCE';
6262
/**
63-
* Entry tickets
63+
* Represents an entry ticket.
6464
*/
6565
public const GENERIC_TYPE_GENERIC_ENTRY_TICKET = 'GENERIC_ENTRY_TICKET';
6666
/**
67-
* Receipts
67+
* Represents a receipt.
6868
*/
6969
public const GENERIC_TYPE_GENERIC_RECEIPT = 'GENERIC_RECEIPT';
7070
/**
71-
* Loyalty cards. Please note that it is advisable to use a dedicated Loyalty
72-
* card pass type instead of this generic type. A dedicated loyalty card pass
73-
* type offers more features and functionality than a generic pass type.
71+
* Represents a loyalty card. Please note that it is advisable to use a
72+
* dedicated Loyalty card pass type instead of this generic type. A dedicated
73+
* loyalty card pass type offers more features and functionality than a
74+
* generic pass type.
7475
*/
7576
public const GENERIC_TYPE_GENERIC_LOYALTY_CARD = 'GENERIC_LOYALTY_CARD';
7677
/**
77-
* Other type
78+
* Represents a business card.
79+
*/
80+
public const GENERIC_TYPE_GENERIC_BUSINESS_CARD = 'GENERIC_BUSINESS_CARD';
81+
/**
82+
* Represents a barcode pass.
83+
*/
84+
public const GENERIC_TYPE_GENERIC_BARCODE_PASS = 'GENERIC_BARCODE_PASS';
85+
/**
86+
* Represents a membership card.
87+
*/
88+
public const GENERIC_TYPE_GENERIC_MEMBERSHIP_CARD = 'GENERIC_MEMBERSHIP_CARD';
89+
/**
90+
* Represents a student card.
91+
*/
92+
public const GENERIC_TYPE_GENERIC_STUDENT_CARD = 'GENERIC_STUDENT_CARD';
93+
/**
94+
* Represents a transit pass.
95+
*/
96+
public const GENERIC_TYPE_GENERIC_TRANSIT_PASS = 'GENERIC_TRANSIT_PASS';
97+
/**
98+
* Represents a vehicle registration.
99+
*/
100+
public const GENERIC_TYPE_GENERIC_VEHICLE_REGISTRATION = 'GENERIC_VEHICLE_REGISTRATION';
101+
/**
102+
* Represents another type of generic pass.
78103
*/
79104
public const GENERIC_TYPE_GENERIC_OTHER = 'GENERIC_OTHER';
80105
/**
@@ -317,7 +342,9 @@ public function getClassId()
317342
* GENERIC_UTILITY_BILLS, GENERIC_PARKING_PASS, GENERIC_VOUCHER,
318343
* GENERIC_GYM_MEMBERSHIP, GENERIC_LIBRARY_MEMBERSHIP, GENERIC_RESERVATIONS,
319344
* GENERIC_AUTO_INSURANCE, GENERIC_HOME_INSURANCE, GENERIC_ENTRY_TICKET,
320-
* GENERIC_RECEIPT, GENERIC_LOYALTY_CARD, GENERIC_OTHER
345+
* GENERIC_RECEIPT, GENERIC_LOYALTY_CARD, GENERIC_BUSINESS_CARD,
346+
* GENERIC_BARCODE_PASS, GENERIC_MEMBERSHIP_CARD, GENERIC_STUDENT_CARD,
347+
* GENERIC_TRANSIT_PASS, GENERIC_VEHICLE_REGISTRATION, GENERIC_OTHER
321348
*
322349
* @param self::GENERIC_TYPE_* $genericType
323350
*/

0 commit comments

Comments
 (0)