Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import java.time.Duration
import java.util.concurrent.CompletableFuture

class AccountHolderServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : AccountHolderServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import com.lithic.api.models.AccountUpdateParams
import java.util.concurrent.CompletableFuture

class AccountServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : AccountServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import com.lithic.api.models.AggregateBalanceListParams
import java.util.concurrent.CompletableFuture

class AggregateBalanceServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : AggregateBalanceServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import com.lithic.api.services.async.authRules.V2ServiceAsync
import com.lithic.api.services.async.authRules.V2ServiceAsyncImpl

class AuthRuleServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : AuthRuleServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import com.lithic.api.models.AuthStreamSecret
import java.util.concurrent.CompletableFuture

class AuthStreamEnrollmentServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : AuthStreamEnrollmentServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import com.lithic.api.models.BalanceListParams
import java.util.concurrent.CompletableFuture

class BalanceServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : BalanceServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import com.lithic.api.models.BookTransferReverseParams
import java.util.concurrent.CompletableFuture

class BookTransferServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : BookTransferServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import com.lithic.api.models.CardProgramRetrieveParams
import java.util.concurrent.CompletableFuture

class CardProgramServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : CardProgramServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import com.lithic.api.services.async.cards.FinancialTransactionServiceAsyncImpl
import java.util.concurrent.CompletableFuture

class CardServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : CardServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import com.lithic.api.services.async.creditProducts.PrimeRateServiceAsync
import com.lithic.api.services.async.creditProducts.PrimeRateServiceAsyncImpl

class CreditProductServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : CreditProductServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import com.lithic.api.models.DigitalCardArtRetrieveParams
import java.util.concurrent.CompletableFuture

class DigitalCardArtServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : DigitalCardArtServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import com.lithic.api.models.DisputeUpdateParams
import java.util.concurrent.CompletableFuture

class DisputeServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : DisputeServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import com.lithic.api.services.async.events.SubscriptionServiceAsyncImpl
import java.util.concurrent.CompletableFuture

class EventServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : EventServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import com.lithic.api.services.async.externalBankAccounts.MicroDepositServiceAsy
import java.util.concurrent.CompletableFuture

class ExternalBankAccountServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : ExternalBankAccountServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import com.lithic.api.models.ExternalPaymentSettleParams
import java.util.concurrent.CompletableFuture

class ExternalPaymentServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : ExternalPaymentServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import com.lithic.api.services.async.financialAccounts.StatementServiceAsyncImpl
import java.util.concurrent.CompletableFuture

class FinancialAccountServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : FinancialAccountServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import com.lithic.api.models.ManagementOperationTransaction
import java.util.concurrent.CompletableFuture

class ManagementOperationServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : ManagementOperationServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import com.lithic.api.models.PaymentSimulateReturnResponse
import java.util.concurrent.CompletableFuture

class PaymentServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : PaymentServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import com.lithic.api.services.async.reports.SettlementServiceAsync
import com.lithic.api.services.async.reports.SettlementServiceAsyncImpl

class ReportServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : ReportServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import com.lithic.api.models.ResponderEndpointStatus
import java.util.concurrent.CompletableFuture

class ResponderEndpointServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : ResponderEndpointServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import com.lithic.api.services.async.threeDS.DecisioningServiceAsync
import com.lithic.api.services.async.threeDS.DecisioningServiceAsyncImpl

class ThreeDSServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : ThreeDSServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import com.lithic.api.models.TokenizationSecret
import java.util.concurrent.CompletableFuture

class TokenizationDecisioningServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : TokenizationDecisioningServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import com.lithic.api.models.TokenizationUpdateDigitalCardArtResponse
import java.util.concurrent.CompletableFuture

class TokenizationServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : TokenizationServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import com.lithic.api.services.async.transactions.EventServiceAsyncImpl
import java.util.concurrent.CompletableFuture

class TransactionServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : TransactionServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import com.lithic.api.models.TransferCreateParams
import java.util.concurrent.CompletableFuture

class TransferServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : TransferServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import com.lithic.api.services.async.authRules.v2.BacktestServiceAsyncImpl
import java.util.concurrent.CompletableFuture

class V2ServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : V2ServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import com.lithic.api.models.BacktestResults
import java.util.concurrent.CompletableFuture

class BacktestServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : BacktestServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import com.lithic.api.models.CardAggregateBalanceListParams
import java.util.concurrent.CompletableFuture

class AggregateBalanceServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : AggregateBalanceServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import com.lithic.api.models.CardBalanceListParams
import java.util.concurrent.CompletableFuture

class BalanceServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : BalanceServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import com.lithic.api.models.FinancialTransaction
import java.util.concurrent.CompletableFuture

class FinancialTransactionServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : FinancialTransactionServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import com.lithic.api.models.ExtendedCredit
import java.util.concurrent.CompletableFuture

class ExtendedCreditServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : ExtendedCreditServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import com.lithic.api.models.PrimeRateRetrieveResponse
import java.util.concurrent.CompletableFuture

class PrimeRateServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : PrimeRateServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import com.lithic.api.models.SubscriptionRetrieveSecretResponse
import java.util.concurrent.CompletableFuture

class SubscriptionServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : SubscriptionServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import com.lithic.api.models.MicroDepositCreateResponse
import java.util.concurrent.CompletableFuture

class MicroDepositServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : MicroDepositServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import com.lithic.api.models.FinancialAccountBalanceListParams
import java.util.concurrent.CompletableFuture

class BalanceServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : BalanceServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import com.lithic.api.models.FinancialAccountCreditConfigurationUpdateParams
import java.util.concurrent.CompletableFuture

class CreditConfigurationServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : CreditConfigurationServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import com.lithic.api.models.FinancialTransactionRetrieveParams
import java.util.concurrent.CompletableFuture

class FinancialTransactionServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : FinancialTransactionServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import com.lithic.api.models.LoanTape
import java.util.concurrent.CompletableFuture

class LoanTapeServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : LoanTapeServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import com.lithic.api.services.async.financialAccounts.statements.LineItemServic
import java.util.concurrent.CompletableFuture

class StatementServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : StatementServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import com.lithic.api.models.FinancialAccountStatementLineItemListParams
import java.util.concurrent.CompletableFuture

class LineItemServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : LineItemServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import com.lithic.api.models.SettlementReport
import java.util.concurrent.CompletableFuture

class SettlementServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : SettlementServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import com.lithic.api.models.ThreeDSAuthenticationSimulateParams
import java.util.concurrent.CompletableFuture

class AuthenticationServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : AuthenticationServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import com.lithic.api.models.ThreeDSDecisioningSimulateChallengeResponseParams
import java.util.concurrent.CompletableFuture

class DecisioningServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : DecisioningServiceAsync {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import com.lithic.api.models.TransactionEnhancedCommercialDataRetrieveParams
import java.util.concurrent.CompletableFuture

class EnhancedCommercialDataServiceAsyncImpl
constructor(
internal constructor(
private val clientOptions: ClientOptions,
) : EnhancedCommercialDataServiceAsync {

Expand Down
Loading