Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
configured_endpoints: 239
openapi_spec_hash: ec98ee98f7777d5d0f87bcb178e47d8d
openapi_spec_hash: d97e7cc87bac93fb46331d3515bdf11e
config_hash: 1ca082e374ef7000e2a5971e8da740e0
Original file line number Diff line number Diff line change
Expand Up @@ -5154,32 +5154,20 @@ private constructor(

companion object {

/**
* Ship the checks via USPS First Class, which supports a maximum of 1000 pages
* (checks and attachments combined).
*/
/** USPS First Class */
@JvmField val USPS_FIRST_CLASS = of("usps_first_class")

/**
* Ship the checks via FedEx Overnight, which supports a maximum of 50 pages (checks
* and attachments combined).
*/
/** FedEx Overnight */
@JvmField val FEDEX_OVERNIGHT = of("fedex_overnight")

@JvmStatic fun of(value: String) = ShippingMethod(JsonField.of(value))
}

/** An enum containing [ShippingMethod]'s known values. */
enum class Known {
/**
* Ship the checks via USPS First Class, which supports a maximum of 1000 pages
* (checks and attachments combined).
*/
/** USPS First Class */
USPS_FIRST_CLASS,
/**
* Ship the checks via FedEx Overnight, which supports a maximum of 50 pages (checks
* and attachments combined).
*/
/** FedEx Overnight */
FEDEX_OVERNIGHT,
}

Expand All @@ -5193,15 +5181,9 @@ private constructor(
* - It was constructed with an arbitrary value using the [of] method.
*/
enum class Value {
/**
* Ship the checks via USPS First Class, which supports a maximum of 1000 pages
* (checks and attachments combined).
*/
/** USPS First Class */
USPS_FIRST_CLASS,
/**
* Ship the checks via FedEx Overnight, which supports a maximum of 50 pages (checks
* and attachments combined).
*/
/** FedEx Overnight */
FEDEX_OVERNIGHT,
/**
* An enum member indicating that [ShippingMethod] was instantiated with an unknown
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3166,32 +3166,20 @@ private constructor(

companion object {

/**
* Ship the checks via USPS First Class, which supports a maximum of 1000 pages
* (checks and attachments combined).
*/
/** USPS First Class */
@JvmField val USPS_FIRST_CLASS = of("usps_first_class")

/**
* Ship the checks via FedEx Overnight, which supports a maximum of 50 pages (checks
* and attachments combined).
*/
/** FedEx Overnight */
@JvmField val FEDEX_OVERNIGHT = of("fedex_overnight")

@JvmStatic fun of(value: String) = ShippingMethod(JsonField.of(value))
}

/** An enum containing [ShippingMethod]'s known values. */
enum class Known {
/**
* Ship the checks via USPS First Class, which supports a maximum of 1000 pages
* (checks and attachments combined).
*/
/** USPS First Class */
USPS_FIRST_CLASS,
/**
* Ship the checks via FedEx Overnight, which supports a maximum of 50 pages (checks
* and attachments combined).
*/
/** FedEx Overnight */
FEDEX_OVERNIGHT,
}

Expand All @@ -3205,15 +3193,9 @@ private constructor(
* - It was constructed with an arbitrary value using the [of] method.
*/
enum class Value {
/**
* Ship the checks via USPS First Class, which supports a maximum of 1000 pages
* (checks and attachments combined).
*/
/** USPS First Class */
USPS_FIRST_CLASS,
/**
* Ship the checks via FedEx Overnight, which supports a maximum of 50 pages (checks
* and attachments combined).
*/
/** FedEx Overnight */
FEDEX_OVERNIGHT,
/**
* An enum member indicating that [ShippingMethod] was instantiated with an unknown
Expand Down
Loading
Loading