Class ManagementOperationCreateParams
-
- All Implemented Interfaces:
-
com.lithic.api.core.Params
public final class ManagementOperationCreateParams implements Params
Create management operation
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classManagementOperationCreateParams.BuilderA builder for ManagementOperationCreateParams.
public final classManagementOperationCreateParams.CreateManagementOperationRequestpublic final classManagementOperationCreateParams.ManagementOperationCategorypublic final classManagementOperationCreateParams.ManagementOperationDirectionpublic final classManagementOperationCreateParams.ManagementOperationEventTypepublic final classManagementOperationCreateParams.OnClosedAccountWhat to do if the financial account is closed when posting an operation
-
Method Summary
-
-
Method Detail
-
category
final ManagementOperationCreateParams.ManagementOperationCategory category()
-
direction
final ManagementOperationCreateParams.ManagementOperationDirection direction()
-
effectiveDate
final LocalDate effectiveDate()
-
eventType
final ManagementOperationCreateParams.ManagementOperationEventType eventType()
-
financialAccountToken
final String financialAccountToken()
-
onClosedAccount
final Optional<ManagementOperationCreateParams.OnClosedAccount> onClosedAccount()
What to do if the financial account is closed when posting an operation
-
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<ManagementOperationCreateParams.ManagementOperationCategory> _category()
Returns the raw JSON value of category.
Unlike category, this method doesn't throw if the JSON field has an unexpected type.
-
_direction
final JsonField<ManagementOperationCreateParams.ManagementOperationDirection> _direction()
Returns the raw JSON value of direction.
Unlike direction, 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.
-
_eventType
final JsonField<ManagementOperationCreateParams.ManagementOperationEventType> _eventType()
Returns the raw JSON value of eventType.
Unlike eventType, 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.
-
_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.
-
_onClosedAccount
final JsonField<ManagementOperationCreateParams.OnClosedAccount> _onClosedAccount()
Returns the raw JSON value of onClosedAccount.
Unlike onClosedAccount, this method doesn't throw if the JSON field has an unexpected type.
-
_subtype
final JsonField<String> _subtype()
Returns the raw JSON value of subtype.
Unlike subtype, 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 ManagementOperationCreateParams.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 ManagementOperationCreateParams.Builder builder()
Returns a mutable builder for constructing an instance of ManagementOperationCreateParams.
The following fields are required:
.amount() .category() .direction() .effectiveDate() .eventType() .financialAccountToken()
-
-
-
-