@@ -58,7 +58,7 @@ private constructor(
5858
5959 /* *
6060 * Two digit (MM) expiry month. If neither `exp_month` nor `exp_year` is provided, an expiration
61- * date six years in the future will be generated.
61+ * date five years in the future will be generated. Five years is the maximum expiration date .
6262 *
6363 * @throws LithicInvalidDataException if the JSON field has an unexpected type (e.g. if the
6464 * server responded with an unexpected value).
@@ -67,7 +67,8 @@ private constructor(
6767
6868 /* *
6969 * Four digit (yyyy) expiry year. If neither `exp_month` nor `exp_year` is provided, an
70- * expiration date six years in the future will be generated.
70+ * expiration date five years in the future will be generated. Five years is the maximum
71+ * expiration date.
7172 *
7273 * @throws LithicInvalidDataException if the JSON field has an unexpected type (e.g. if the
7374 * server responded with an unexpected value).
@@ -232,7 +233,8 @@ private constructor(
232233
233234 /* *
234235 * Two digit (MM) expiry month. If neither `exp_month` nor `exp_year` is provided, an
235- * expiration date six years in the future will be generated.
236+ * expiration date five years in the future will be generated. Five years is the maximum
237+ * expiration date.
236238 */
237239 fun expMonth (expMonth : String ) = apply { body.expMonth(expMonth) }
238240
@@ -246,7 +248,8 @@ private constructor(
246248
247249 /* *
248250 * Four digit (yyyy) expiry year. If neither `exp_month` nor `exp_year` is provided, an
249- * expiration date six years in the future will be generated.
251+ * expiration date five years in the future will be generated. Five years is the maximum
252+ * expiration date.
250253 */
251254 fun expYear (expYear : String ) = apply { body.expYear(expYear) }
252255
@@ -510,7 +513,8 @@ private constructor(
510513
511514 /* *
512515 * Two digit (MM) expiry month. If neither `exp_month` nor `exp_year` is provided, an
513- * expiration date six years in the future will be generated.
516+ * expiration date five years in the future will be generated. Five years is the maximum
517+ * expiration date.
514518 *
515519 * @throws LithicInvalidDataException if the JSON field has an unexpected type (e.g. if the
516520 * server responded with an unexpected value).
@@ -519,7 +523,8 @@ private constructor(
519523
520524 /* *
521525 * Four digit (yyyy) expiry year. If neither `exp_month` nor `exp_year` is provided, an
522- * expiration date six years in the future will be generated.
526+ * expiration date five years in the future will be generated. Five years is the maximum
527+ * expiration date.
523528 *
524529 * @throws LithicInvalidDataException if the JSON field has an unexpected type (e.g. if the
525530 * server responded with an unexpected value).
@@ -681,7 +686,8 @@ private constructor(
681686
682687 /* *
683688 * Two digit (MM) expiry month. If neither `exp_month` nor `exp_year` is provided, an
684- * expiration date six years in the future will be generated.
689+ * expiration date five years in the future will be generated. Five years is the maximum
690+ * expiration date.
685691 */
686692 fun expMonth (expMonth : String ) = expMonth(JsonField .of(expMonth))
687693
@@ -696,7 +702,8 @@ private constructor(
696702
697703 /* *
698704 * Four digit (yyyy) expiry year. If neither `exp_month` nor `exp_year` is provided, an
699- * expiration date six years in the future will be generated.
705+ * expiration date five years in the future will be generated. Five years is the maximum
706+ * expiration date.
700707 */
701708 fun expYear (expYear : String ) = expYear(JsonField .of(expYear))
702709
0 commit comments