Class ExternalPaymentCreateParams
-
- All Implemented Interfaces:
-
com.lithic.api.core.Params
public final class ExternalPaymentCreateParams implements Params
Create external payment
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classExternalPaymentCreateParams.BuilderA builder for ExternalPaymentCreateParams.
public final classExternalPaymentCreateParams.CreateExternalPaymentRequestpublic final classExternalPaymentCreateParams.ExternalPaymentCategorypublic final classExternalPaymentCreateParams.ExternalPaymentDirectionpublic final classExternalPaymentCreateParams.ExternalPaymentProgressTo
-
Method Summary
-
-
Method Detail
-
category
final ExternalPaymentCreateParams.ExternalPaymentCategory category()
-
effectiveDate
final LocalDate effectiveDate()
-
financialAccountToken
final String financialAccountToken()
-
paymentType
final ExternalPaymentCreateParams.ExternalPaymentDirection paymentType()
-
progressTo
final Optional<ExternalPaymentCreateParams.ExternalPaymentProgressTo> progressTo()
-
userDefinedId
final Optional<String> userDefinedId()
-
_amount
final JsonField<Long> _amount()
Returns the raw JSON value of amount.
Unlike amount, this method doesn't throw if the JSON field has an unexpected type.
-
_category
final JsonField<ExternalPaymentCreateParams.ExternalPaymentCategory> _category()
Returns the raw JSON value of category.
Unlike category, this method doesn't throw if the JSON field has an unexpected type.
-
_effectiveDate
final JsonField<LocalDate> _effectiveDate()
Returns the raw JSON value of effectiveDate.
Unlike effectiveDate, this method doesn't throw if the JSON field has an unexpected type.
-
_financialAccountToken
final JsonField<String> _financialAccountToken()
Returns the raw JSON value of financialAccountToken.
Unlike financialAccountToken, this method doesn't throw if the JSON field has an unexpected type.
-
_paymentType
final JsonField<ExternalPaymentCreateParams.ExternalPaymentDirection> _paymentType()
Returns the raw JSON value of paymentType.
Unlike paymentType, this method doesn't throw if the JSON field has an unexpected type.
-
_token
final JsonField<String> _token()
Returns the raw JSON value of token.
Unlike token, this method doesn't throw if the JSON field has an unexpected type.
-
_memo
final JsonField<String> _memo()
Returns the raw JSON value of memo.
Unlike memo, this method doesn't throw if the JSON field has an unexpected type.
-
_progressTo
final JsonField<ExternalPaymentCreateParams.ExternalPaymentProgressTo> _progressTo()
Returns the raw JSON value of progressTo.
Unlike progressTo, this method doesn't throw if the JSON field has an unexpected type.
-
_userDefinedId
final JsonField<String> _userDefinedId()
Returns the raw JSON value of userDefinedId.
Unlike userDefinedId, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalBodyProperties
final Map<String, JsonValue> _additionalBodyProperties()
-
_additionalHeaders
final Headers _additionalHeaders()
Additional headers to send with the request.
-
_additionalQueryParams
final QueryParams _additionalQueryParams()
Additional query param to send with the request.
-
toBuilder
final ExternalPaymentCreateParams.Builder toBuilder()
-
_headers
Headers _headers()
The full set of headers in the parameters, including both fixed and additional headers.
-
_queryParams
QueryParams _queryParams()
The full set of query params in the parameters, including both fixed and additional query params.
-
builder
final static ExternalPaymentCreateParams.Builder builder()
Returns a mutable builder for constructing an instance of ExternalPaymentCreateParams.
The following fields are required:
.amount() .category() .effectiveDate() .financialAccountToken() .paymentType()
-
-
-
-