class Lithic::Resources::AccountHolders

def simulate_enrollment_review(params = {})

Other tags:
    See: Lithic::Models::AccountHolderSimulateEnrollmentReviewParams -

Returns:
  • (Lithic::Models::AccountHolderSimulateEnrollmentReviewResponse) -

Parameters:
  • request_options (Lithic::RequestOptions, Hash{Symbol=>Object}, nil) --
  • status_reasons (Array) -- Status reason that will be associated with the simulated account holder status.
  • status (Symbol, Lithic::AccountHolderSimulateEnrollmentReviewParams::Status) -- An account holder's status for use within the simulation.
  • account_holder_token (String) -- The account holder which to perform the simulation upon.

Overloads:
  • simulate_enrollment_review(account_holder_token: nil, status: nil, status_reasons: nil, request_options: {})
def simulate_enrollment_review(params = {})
  parsed, options = Lithic::AccountHolderSimulateEnrollmentReviewParams.dump_request(params)
  @client.request(
    method: :post,
    path: "v1/simulate/account_holders/enrollment_review",
    body: parsed,
    model: Lithic::Models::AccountHolderSimulateEnrollmentReviewResponse,
    options: options
  )
end