@@ -133,10 +133,10 @@ constructor(
133133 fun shippingMethod (): Optional <ShippingMethod > = body.shippingMethod()
134134
135135 /* *
136- * Amount (in cents) to limit approved authorizations. Transaction requests above the spend
137- * limit will be declined. Note that a spend limit of 0 is effectively no limit, and should only
138- * be used to reset or remove a prior limit. Only a limit of 1 or above will result in declined
139- * transactions due to checks against the card limit.
136+ * Amount (in cents) to limit approved authorizations (e.g. 100000 would be a $1,000 limit).
137+ * Transaction requests above the spend limit will be declined. Note that a spend limit of 0 is
138+ * effectively no limit, and should only be used to reset or remove a prior limit. Only a limit
139+ * of 1 or above will result in declined transactions due to checks against the card limit.
140140 */
141141 fun spendLimit (): Optional <Long > = body.spendLimit()
142142
@@ -262,10 +262,10 @@ constructor(
262262 fun _shippingMethod (): JsonField <ShippingMethod > = body._shippingMethod ()
263263
264264 /* *
265- * Amount (in cents) to limit approved authorizations. Transaction requests above the spend
266- * limit will be declined. Note that a spend limit of 0 is effectively no limit, and should only
267- * be used to reset or remove a prior limit. Only a limit of 1 or above will result in declined
268- * transactions due to checks against the card limit.
265+ * Amount (in cents) to limit approved authorizations (e.g. 100000 would be a $1,000 limit).
266+ * Transaction requests above the spend limit will be declined. Note that a spend limit of 0 is
267+ * effectively no limit, and should only be used to reset or remove a prior limit. Only a limit
268+ * of 1 or above will result in declined transactions due to checks against the card limit.
269269 */
270270 fun _spendLimit (): JsonField <Long > = body._spendLimit ()
271271
@@ -467,10 +467,11 @@ constructor(
467467 Optional .ofNullable(shippingMethod.getNullable(" shipping_method" ))
468468
469469 /* *
470- * Amount (in cents) to limit approved authorizations. Transaction requests above the spend
471- * limit will be declined. Note that a spend limit of 0 is effectively no limit, and should
472- * only be used to reset or remove a prior limit. Only a limit of 1 or above will result in
473- * declined transactions due to checks against the card limit.
470+ * Amount (in cents) to limit approved authorizations (e.g. 100000 would be a $1,000 limit).
471+ * Transaction requests above the spend limit will be declined. Note that a spend limit of 0
472+ * is effectively no limit, and should only be used to reset or remove a prior limit. Only a
473+ * limit of 1 or above will result in declined transactions due to checks against the card
474+ * limit.
474475 */
475476 fun spendLimit (): Optional <Long > =
476477 Optional .ofNullable(spendLimit.getNullable(" spend_limit" ))
@@ -615,10 +616,11 @@ constructor(
615616 fun _shippingMethod (): JsonField <ShippingMethod > = shippingMethod
616617
617618 /* *
618- * Amount (in cents) to limit approved authorizations. Transaction requests above the spend
619- * limit will be declined. Note that a spend limit of 0 is effectively no limit, and should
620- * only be used to reset or remove a prior limit. Only a limit of 1 or above will result in
621- * declined transactions due to checks against the card limit.
619+ * Amount (in cents) to limit approved authorizations (e.g. 100000 would be a $1,000 limit).
620+ * Transaction requests above the spend limit will be declined. Note that a spend limit of 0
621+ * is effectively no limit, and should only be used to reset or remove a prior limit. Only a
622+ * limit of 1 or above will result in declined transactions due to checks against the card
623+ * limit.
622624 */
623625 @JsonProperty(" spend_limit" ) @ExcludeMissing fun _spendLimit (): JsonField <Long > = spendLimit
624626
@@ -957,18 +959,20 @@ constructor(
957959 }
958960
959961 /* *
960- * Amount (in cents) to limit approved authorizations. Transaction requests above the
961- * spend limit will be declined. Note that a spend limit of 0 is effectively no limit,
962- * and should only be used to reset or remove a prior limit. Only a limit of 1 or above
963- * will result in declined transactions due to checks against the card limit.
962+ * Amount (in cents) to limit approved authorizations (e.g. 100000 would be a $1,000
963+ * limit). Transaction requests above the spend limit will be declined. Note that a
964+ * spend limit of 0 is effectively no limit, and should only be used to reset or remove
965+ * a prior limit. Only a limit of 1 or above will result in declined transactions due to
966+ * checks against the card limit.
964967 */
965968 fun spendLimit (spendLimit : Long ) = spendLimit(JsonField .of(spendLimit))
966969
967970 /* *
968- * Amount (in cents) to limit approved authorizations. Transaction requests above the
969- * spend limit will be declined. Note that a spend limit of 0 is effectively no limit,
970- * and should only be used to reset or remove a prior limit. Only a limit of 1 or above
971- * will result in declined transactions due to checks against the card limit.
971+ * Amount (in cents) to limit approved authorizations (e.g. 100000 would be a $1,000
972+ * limit). Transaction requests above the spend limit will be declined. Note that a
973+ * spend limit of 0 is effectively no limit, and should only be used to reset or remove
974+ * a prior limit. Only a limit of 1 or above will result in declined transactions due to
975+ * checks against the card limit.
972976 */
973977 fun spendLimit (spendLimit : JsonField <Long >) = apply { this .spendLimit = spendLimit }
974978
@@ -1333,18 +1337,20 @@ constructor(
13331337 }
13341338
13351339 /* *
1336- * Amount (in cents) to limit approved authorizations. Transaction requests above the spend
1337- * limit will be declined. Note that a spend limit of 0 is effectively no limit, and should
1338- * only be used to reset or remove a prior limit. Only a limit of 1 or above will result in
1339- * declined transactions due to checks against the card limit.
1340+ * Amount (in cents) to limit approved authorizations (e.g. 100000 would be a $1,000 limit).
1341+ * Transaction requests above the spend limit will be declined. Note that a spend limit of 0
1342+ * is effectively no limit, and should only be used to reset or remove a prior limit. Only a
1343+ * limit of 1 or above will result in declined transactions due to checks against the card
1344+ * limit.
13401345 */
13411346 fun spendLimit (spendLimit : Long ) = apply { body.spendLimit(spendLimit) }
13421347
13431348 /* *
1344- * Amount (in cents) to limit approved authorizations. Transaction requests above the spend
1345- * limit will be declined. Note that a spend limit of 0 is effectively no limit, and should
1346- * only be used to reset or remove a prior limit. Only a limit of 1 or above will result in
1347- * declined transactions due to checks against the card limit.
1349+ * Amount (in cents) to limit approved authorizations (e.g. 100000 would be a $1,000 limit).
1350+ * Transaction requests above the spend limit will be declined. Note that a spend limit of 0
1351+ * is effectively no limit, and should only be used to reset or remove a prior limit. Only a
1352+ * limit of 1 or above will result in declined transactions due to checks against the card
1353+ * limit.
13481354 */
13491355 fun spendLimit (spendLimit : JsonField <Long >) = apply { body.spendLimit(spendLimit) }
13501356
0 commit comments