Categorygithub.com/lithic-com/lithic-go
modulepackage
0.60.0
Repository: https://github.com/lithic-com/lithic-go.git
Documentation: pkg.go.dev

# README

Lithic Go API Library

Go Reference

The Lithic Go library provides convenient access to the Lithic REST API from applications written in Go. The full API of this library can be found in api.md.

Installation

import (
	"github.com/lithic-com/lithic-go" // imported as lithic
)

Or to pin the version:

go get -u 'github.com/lithic-com/[email protected]'

Requirements

This library requires Go 1.18+.

Usage

The full API of this library can be found in api.md.

package main

import (
	"context"
	"fmt"

	"github.com/lithic-com/lithic-go"
	"github.com/lithic-com/lithic-go/option"
)

func main() {
	client := lithic.NewClient(
		option.WithAPIKey("My Lithic API Key"), // defaults to os.LookupEnv("LITHIC_API_KEY")
		option.WithEnvironmentSandbox(),        // defaults to option.WithEnvironmentProduction()
	)
	card, err := client.Cards.New(context.TODO(), lithic.CardNewParams{
		Type: lithic.F(lithic.CardNewParamsTypeSingleUse),
	})
	if err != nil {
		panic(err.Error())
	}
	fmt.Printf("%+v\n", card.Token)
}

Request fields

All request parameters are wrapped in a generic Field type, which we use to distinguish zero values from null or omitted fields.

This prevents accidentally sending a zero value if you forget a required parameter, and enables explicitly sending null, false, '', or 0 on optional parameters. Any field not specified is not sent.

To construct fields with values, use the helpers String(), Int(), Float(), or most commonly, the generic F[T](). To send a null, use Null[T](), and to send a nonconforming value, use Raw[T](any). For example:

params := FooParams{
	Name: lithic.F("hello"),

	// Explicitly send `"description": null`
	Description: lithic.Null[string](),

	Point: lithic.F(lithic.Point{
		X: lithic.Int(0),
		Y: lithic.Int(1),

		// In cases where the API specifies a given type,
		// but you want to send something else, use `Raw`:
		Z: lithic.Raw[int64](0.01), // sends a float
	}),
}

Response objects

All fields in response structs are value types (not pointers or wrappers).

If a given field is null, not present, or invalid, the corresponding field will simply be its zero value.

All response structs also include a special JSON field, containing more detailed information about each property, which you can use like so:

if res.Name == "" {
	// true if `"name"` is either not present or explicitly null
	res.JSON.Name.IsNull()

	// true if the `"name"` key was not present in the repsonse JSON at all
	res.JSON.Name.IsMissing()

	// When the API returns data that cannot be coerced to the expected type:
	if res.JSON.Name.IsInvalid() {
		raw := res.JSON.Name.Raw()

		legacyName := struct{
			First string `json:"first"`
			Last  string `json:"last"`
		}{}
		json.Unmarshal([]byte(raw), &legacyName)
		name = legacyName.First + " " + legacyName.Last
	}
}

These .JSON structs also include an Extras map containing any properties in the json response that were not specified in the struct. This can be useful for API features not yet present in the SDK.

body := res.JSON.ExtraFields["my_unexpected_field"].Raw()

RequestOptions

This library uses the functional options pattern. Functions defined in the option package return a RequestOption, which is a closure that mutates a RequestConfig. These options can be supplied to the client or at individual requests. For example:

client := lithic.NewClient(
	// Adds a header to every request made by the client
	option.WithHeader("X-Some-Header", "custom_header_info"),
)

client.Cards.New(context.TODO(), ...,
	// Override the header
	option.WithHeader("X-Some-Header", "some_other_custom_header_info"),
	// Add an undocumented field to the request body, using sjson syntax
	option.WithJSONSet("some.json.path", map[string]string{"my": "object"}),
)

See the full list of request options.

Pagination

This library provides some conveniences for working with paginated list endpoints.

You can use .ListAutoPaging() methods to iterate through items across all pages:

iter := client.Cards.ListAutoPaging(context.TODO(), lithic.CardListParams{})
// Automatically fetches more pages as needed.
for iter.Next() {
	card := iter.Current()
	fmt.Printf("%+v\n", card)
}
if err := iter.Err(); err != nil {
	panic(err.Error())
}

Or you can use simple .List() methods to fetch a single page and receive a standard response object with additional helper methods like .GetNextPage(), e.g.:

page, err := client.Cards.List(context.TODO(), lithic.CardListParams{})
for page != nil {
	for _, card := range page.Data {
		fmt.Printf("%+v\n", card)
	}
	page, err = page.GetNextPage()
}
if err != nil {
	panic(err.Error())
}

Errors

When the API returns a non-success status code, we return an error with type *lithic.Error. This contains the StatusCode, *http.Request, and *http.Response values of the request, as well as the JSON of the error body (much like other response objects in the SDK).

To handle errors, we recommend that you use the errors.As pattern:

_, err := client.Cards.New(context.TODO(), lithic.CardNewParams{
	Type: lithic.F(lithic.CardNewParamsTypeAnIncorrectType),
})
if err != nil {
	var apierr *lithic.Error
	if errors.As(err, &apierr) {
		println(string(apierr.DumpRequest(true)))  // Prints the serialized HTTP request
		println(string(apierr.DumpResponse(true))) // Prints the serialized HTTP response
		println(apierr.Message)                    // Invalid parameter(s): type
		println(apierr.DebuggingRequestID)         // 94d5e915-xxxx-4cee-a4f5-2xd6ebd279ac
	}
	panic(err.Error()) // GET "/v1/cards": 400 Bad Request { ... }
}

When other errors occur, they are returned unwrapped; for example, if HTTP transport fails, you might receive *url.Error wrapping *net.OpError.

Timeouts

Requests do not time out by default; use context to configure a timeout for a request lifecycle.

Note that if a request is retried, the context timeout does not start over. To set a per-retry timeout, use option.WithRequestTimeout().

// This sets the timeout for the request, including all the retries.
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Minute)
defer cancel()
client.Cards.List(
	ctx,
	lithic.CardListParams{
		PageSize: lithic.F(int64(10)),
	},
	// This sets the per-retry timeout
	option.WithRequestTimeout(20*time.Second),
)

File uploads

Request parameters that correspond to file uploads in multipart requests are typed as param.Field[io.Reader]. The contents of the io.Reader will by default be sent as a multipart form part with the file name of "anonymous_file" and content-type of "application/octet-stream".

The file name and content-type can be customized by implementing Name() string or ContentType() string on the run-time type of io.Reader. Note that os.File implements Name() string, so a file returned by os.Open will be sent with the file name on disk.

We also provide a helper lithic.FileParam(reader io.Reader, filename string, contentType string) which can be used to wrap any io.Reader with the appropriate file name and content type.

Retries

Certain errors will be automatically retried 2 times by default, with a short exponential backoff. We retry by default all connection errors, 408 Request Timeout, 409 Conflict, 429 Rate Limit, and >=500 Internal errors.

You can use the WithMaxRetries option to configure or disable this:

// Configure the default for all requests:
client := lithic.NewClient(
	option.WithMaxRetries(0), // default is 2
)

// Override per-request:
client.Cards.List(
	context.TODO(),
	lithic.CardListParams{
		PageSize: lithic.F(int64(10)),
	},
	option.WithMaxRetries(5),
)

Middleware

We provide option.WithMiddleware which applies the given middleware to requests.

func Logger(req *http.Request, next option.MiddlewareNext) (res *http.Response, err error) {
	// Before the request
	start := time.Now()
	LogReq(req)

	// Forward the request to the next handler
	res, err = next(req)

	// Handle stuff after the request
	end := time.Now()
	LogRes(res, err, start - end)

    return res, err
}

client := lithic.NewClient(
	option.WithMiddleware(Logger),
)

When multiple middlewares are provided as variadic arguments, the middlewares are applied left to right. If option.WithMiddleware is given multiple times, for example first in the client then the method, the middleware in the client will run first and the middleware given in the method will run next.

You may also replace the default http.Client with option.WithHTTPClient(client). Only one http client is accepted (this overwrites any previous client) and receives requests after any middleware has been applied.

Semantic versioning

This package generally follows SemVer conventions, though certain backwards-incompatible changes may be released as minor versions:

  1. Changes to library internals which are technically public but not intended or documented for external use. (Please open a GitHub issue to let us know if you are relying on such internals).
  2. Changes that we do not expect to impact the vast majority of users in practice.

We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.

We are keen for your feedback; please open an issue with questions, bugs, or suggestions.

Contributing

See the contributing documentation.

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Functions

Bool is a param field helper which helps specify bools.
F is a param field helper used to initialize a [param.Field] generic struct.
FileParam is a param field helper which helps files with a mime content-type.
Float is a param field helper which helps specify floats.
Int is a param field helper which helps specify integers.
NewAccountHolderService generates a new service that applies the given options to each request.
NewAccountService generates a new service that applies the given options to each request.
NewAggregateBalanceService generates a new service that applies the given options to each request.
NewAuthRuleService generates a new service that applies the given options to each request.
NewAuthRuleV2Service generates a new service that applies the given options to each request.
NewAuthStreamEnrollmentService generates a new service that applies the given options to each request.
NewBalanceService generates a new service that applies the given options to each request.
NewBookTransferService generates a new service that applies the given options to each request.
NewCardAggregateBalanceService generates a new service that applies the given options to each request.
NewCardBalanceService generates a new service that applies the given options to each request.
NewCardFinancialTransactionService generates a new service that applies the given options to each request.
NewCardProgramService generates a new service that applies the given options to each request.
NewCardService generates a new service that applies the given options to each request.
NewClient generates a new client with the default option read from the environment (LITHIC_API_KEY, LITHIC_WEBHOOK_SECRET).
NewCreditProductExtendedCreditService generates a new service that applies the given options to each request.
NewDigitalCardArtService generates a new service that applies the given options to each request.
NewDisputeService generates a new service that applies the given options to each request.
NewEventService generates a new service that applies the given options to each request.
NewEventSubscriptionService generates a new service that applies the given options to each request.
NewExternalBankAccountMicroDepositService generates a new service that applies the given options to each request.
NewExternalBankAccountService generates a new service that applies the given options to each request.
NewExternalPaymentService generates a new service that applies the given options to each request.
NewFinancialAccountBalanceService generates a new service that applies the given options to each request.
NewFinancialAccountCreditConfigurationService generates a new service that applies the given options to each request.
NewFinancialAccountFinancialTransactionService generates a new service that applies the given options to each request.
NewFinancialAccountLoanTapeService generates a new service that applies the given options to each request.
NewFinancialAccountService generates a new service that applies the given options to each request.
NewFinancialAccountStatementLineItemService generates a new service that applies the given options to each request.
NewFinancialAccountStatementService generates a new service that applies the given options to each request.
NewManagementOperationService generates a new service that applies the given options to each request.
NewPaymentService generates a new service that applies the given options to each request.
NewReportService generates a new service that applies the given options to each request.
NewReportSettlementService generates a new service that applies the given options to each request.
NewResponderEndpointService generates a new service that applies the given options to each request.
NewThreeDSAuthenticationService generates a new service that applies the given options to each request.
NewThreeDSDecisioningService generates a new service that applies the given options to each request.
NewThreeDSService generates a new service that applies the given options to each request.
NewTokenizationDecisioningService generates a new service that applies the given options to each request.
NewTokenizationService generates a new service that applies the given options to each request.
NewTransactionEnhancedCommercialDataService generates a new service that applies the given options to each request.
NewTransactionEventEnhancedCommercialDataService generates a new service that applies the given options to each request.
NewTransactionEventService generates a new service that applies the given options to each request.
NewTransactionService generates a new service that applies the given options to each request.
NewTransferService generates a new service that applies the given options to each request.
NewWebhookService generates a new service that applies the given options to each request.
Null is a param field helper which explicitly sends null to the API.
Raw is a param field helper for specifying values for fields when the type you are looking to send is different from the type that is specified in the SDK.
String is a param field helper which helps specify strings.

# Constants

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
This is an alias to an internal value.
This is an alias to an internal value.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
This is an alias to an internal value.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Structs

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Information about an individual associated with an account holder.
Only present when user_type == "BUSINESS".
Only present when user_type == "BUSINESS".
Only present when user_type == "INDIVIDUAL".
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Information on individual for whom the account is being opened and KYC is being re-run.
AccountHolderService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
No description provided by the author
Business”s physical address - PO boxes, UPS drops, and FedEx drops are not acceptable; APO/FPO are acceptable.
No description provided by the author
No description provided by the author
Individual's current address - PO boxes, UPS drops, and FedEx drops are not acceptable; APO/FPO are acceptable.
Only present when user_type == "BUSINESS".
Business”s physical address - PO boxes, UPS drops, and FedEx drops are not acceptable; APO/FPO are acceptable.
Only present when user_type == "BUSINESS".
Individual's current address - PO boxes, UPS drops, and FedEx drops are not acceptable; APO/FPO are acceptable.
Only present when user_type == "INDIVIDUAL".
Individual's current address - PO boxes, UPS drops, and FedEx drops are not acceptable; APO/FPO are acceptable.
Information about the most recent identity verification attempt.
No description provided by the author
No description provided by the author
No description provided by the author
Information about the most recent identity verification attempt.
No description provided by the author
AccountService contains methods and other services that help with interacting with the lithic API.
Spend limit information for the user containing the daily, monthly, and lifetime spend limit of the account.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Address used during Address Verification Service (AVS) checks during transactions if enabled via Auth Rules.
No description provided by the author
Aggregate Balance across all end-user accounts.
No description provided by the author
AggregateBalanceService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Parameters for the current version of the Auth Rule.
No description provided by the author
No description provided by the author
No description provided by the author
Parameters for the current version of the Auth Rule.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
AuthRuleService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Parameters for the current version of the Auth Rule.
No description provided by the author
No description provided by the author
No description provided by the author
Parameters for the current version of the Auth Rule.
No description provided by the author
No description provided by the author
No description provided by the author
Parameters for the current version of the Auth Rule.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Parameters for the current version of the Auth Rule.
No description provided by the author
No description provided by the author
No description provided by the author
Parameters for the current version of the Auth Rule.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Parameters for the current version of the Auth Rule.
No description provided by the author
No description provided by the author
No description provided by the author
Parameters for the current version of the Auth Rule.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Parameters for the current version of the Auth Rule.
No description provided by the author
No description provided by the author
No description provided by the author
Parameters for the current version of the Auth Rule.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Parameters for the current version of the Auth Rule.
No description provided by the author
No description provided by the author
No description provided by the author
Parameters for the current version of the Auth Rule.
No description provided by the author
No description provided by the author
No description provided by the author
Parameters for the current version of the Auth Rule.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Parameters for the current version of the Auth Rule.
No description provided by the author
No description provided by the author
No description provided by the author
Parameters for the current version of the Auth Rule.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Parameters for the current version of the Auth Rule.
No description provided by the author
No description provided by the author
No description provided by the author
Parameters for the current version of the Auth Rule.
No description provided by the author
No description provided by the author
No description provided by the author
AuthRuleV2Service contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
No description provided by the author
Parameters for the current version of the Auth Rule.
No description provided by the author
No description provided by the author
No description provided by the author
Parameters for the current version of the Auth Rule.
No description provided by the author
No description provided by the author
AuthStreamEnrollmentService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
Balance.
No description provided by the author
BalanceService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
BookTransferService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
Card Aggregate Balance across all end-user accounts.
CardAggregateBalanceService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
Balance of a Financial Account.
CardBalanceService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
CardFinancialTransactionService contains methods and other services that help with interacting with the lithic API.
Deprecated: Funding account for the card.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
CardProgramService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
CardService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Client creates a struct with services and top level methods that help with interacting with the lithic API.
CreditProductExtendedCreditService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
DigitalCardArtService contains methods and other services that help with interacting with the lithic API.
Dispute.
Dispute evidence.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
DisputeService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
An L2/L3 enhanced commercial data line item.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
A single event that affects the transaction state and lifecycle.
No description provided by the author
No description provided by the author
EventService contains methods and other services that help with interacting with the lithic API.
A subscription to specific event types.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
EventSubscriptionService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
ExternalBankAccountMicroDepositService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
ExternalBankAccountService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
ExternalPaymentService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
No description provided by the author
Balance of a Financial Account.
FinancialAccountBalanceService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
FinancialAccountCreditConfigurationService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
FinancialAccountFinancialTransactionService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
FinancialAccountLoanTapeService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
FinancialAccountService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
FinancialAccountStatementLineItemService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
FinancialAccountStatementService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Individuals associated with a KYB application.
Information for business for which the account is being opened and KYB is being run.
An individual with significant responsibility for managing the legal entity (e.g., a Chief Executive Officer, Chief Financial Officer, Chief Operating Officer, Managing Member, General Partner, President, Vice President, or Treasurer).
No description provided by the author
No description provided by the author
Information on individual for whom the account is being opened and KYC is being run.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Amount due for the prior billing cycle.
Amount due for the current billing cycle.
Amount not paid off on previous due dates.
Amount due for the past billing cycles.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
ManagementOperationService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
A subscription to specific event types.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
PaymentService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
ReportService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
ReportSettlementService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
ResponderEndpointService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
The total gross amount of other fees by type.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Object containing additional data about the 3DS request that is beyond the EMV 3DS standard spec (e.g., specific fields that only certain card networks send but are not required across all 3DS requests).
Object containing data about the app used in the e-commerce transaction.
Object containing data about the browser used in the e-commerce transaction.
Object containing data about the cardholder provided during the transaction.
Object containing data on the billing address provided during the transaction.
Object containing data on the shipping address provided during the transaction.
Object containing data about the merchant involved in the e-commerce transaction.
Object containing additional data indicating additional risk factors related to the e-commerce transaction.
Object containing data about the e-commerce transaction for which the merchant is requesting authentication.
ThreeDSAuthenticationService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
ThreeDSDecisioningService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
No description provided by the author
ThreeDSService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
TokenizationDecisioningService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
TokenizationService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
TransactionEnhancedCommercialDataService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
TransactionEventEnhancedCommercialDataService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
TransactionEventService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
TransactionService contains methods and other services that help with interacting with the lithic API.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
TransferService contains methods and other services that help with interacting with the lithic API.
WebhookService contains methods and other services that help with interacting with the lithic API.
No description provided by the author

# Interfaces

Satisfied by [KYBParam], [KYCParam], [KYCExemptParam], [AccountHolderNewParamsBody].
A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` Union satisfied by [shared.UnionString], [shared.UnionFloat] or [AuthRuleMigrateV1ToV2ResponseCurrentVersionParametersConditionalBlockParametersConditionsValueArray].
Parameters for the current version of the Auth Rule Union satisfied by [AuthRuleMigrateV1ToV2ResponseCurrentVersionParametersConditionalBlockParameters] or [shared.VelocityLimitParams].
A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` Union satisfied by [shared.UnionString], [shared.UnionFloat] or [AuthRuleMigrateV1ToV2ResponseDraftVersionParametersConditionalBlockParametersConditionsValueArray].
Parameters for the current version of the Auth Rule Union satisfied by [AuthRuleMigrateV1ToV2ResponseDraftVersionParametersConditionalBlockParameters] or [shared.VelocityLimitParams].
Satisfied by [AuthRuleV2ApplyParamsBodyApplyAuthRuleRequestAccountTokens], [AuthRuleV2ApplyParamsBodyApplyAuthRuleRequestCardTokens], [AuthRuleV2ApplyParamsBodyApplyAuthRuleRequestProgramLevel], [AuthRuleV2ApplyParamsBody].
A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` Union satisfied by [shared.UnionString], [shared.UnionFloat] or [AuthRuleV2ApplyResponseCurrentVersionParametersConditionalBlockParametersConditionsValueArray].
Parameters for the current version of the Auth Rule Union satisfied by [AuthRuleV2ApplyResponseCurrentVersionParametersConditionalBlockParameters] or [shared.VelocityLimitParams].
A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` Union satisfied by [shared.UnionString], [shared.UnionFloat] or [AuthRuleV2ApplyResponseDraftVersionParametersConditionalBlockParametersConditionsValueArray].
Parameters for the current version of the Auth Rule Union satisfied by [AuthRuleV2ApplyResponseDraftVersionParametersConditionalBlockParameters] or [shared.VelocityLimitParams].
A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` Satisfied by [shared.UnionString], [shared.UnionFloat], [AuthRuleV2DraftParamsParametersConditionalBlockParametersConditionsValueArray].
Parameters for the current version of the Auth Rule Satisfied by [AuthRuleV2DraftParamsParametersConditionalBlockParameters], [shared.VelocityLimitParams], [AuthRuleV2DraftParamsParameters].
A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` Union satisfied by [shared.UnionString], [shared.UnionFloat] or [AuthRuleV2DraftResponseCurrentVersionParametersConditionalBlockParametersConditionsValueArray].
Parameters for the current version of the Auth Rule Union satisfied by [AuthRuleV2DraftResponseCurrentVersionParametersConditionalBlockParameters] or [shared.VelocityLimitParams].
A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` Union satisfied by [shared.UnionString], [shared.UnionFloat] or [AuthRuleV2DraftResponseDraftVersionParametersConditionalBlockParametersConditionsValueArray].
Parameters for the current version of the Auth Rule Union satisfied by [AuthRuleV2DraftResponseDraftVersionParametersConditionalBlockParameters] or [shared.VelocityLimitParams].
A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` Union satisfied by [shared.UnionString], [shared.UnionFloat] or [AuthRuleV2GetResponseCurrentVersionParametersConditionalBlockParametersConditionsValueArray].
Parameters for the current version of the Auth Rule Union satisfied by [AuthRuleV2GetResponseCurrentVersionParametersConditionalBlockParameters] or [shared.VelocityLimitParams].
A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` Union satisfied by [shared.UnionString], [shared.UnionFloat] or [AuthRuleV2GetResponseDraftVersionParametersConditionalBlockParametersConditionsValueArray].
Parameters for the current version of the Auth Rule Union satisfied by [AuthRuleV2GetResponseDraftVersionParametersConditionalBlockParameters] or [shared.VelocityLimitParams].
A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` Union satisfied by [shared.UnionString], [shared.UnionFloat] or [AuthRuleV2ListResponseCurrentVersionParametersConditionalBlockParametersConditionsValueArray].
Parameters for the current version of the Auth Rule Union satisfied by [AuthRuleV2ListResponseCurrentVersionParametersConditionalBlockParameters] or [shared.VelocityLimitParams].
A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` Union satisfied by [shared.UnionString], [shared.UnionFloat] or [AuthRuleV2ListResponseDraftVersionParametersConditionalBlockParametersConditionsValueArray].
Parameters for the current version of the Auth Rule Union satisfied by [AuthRuleV2ListResponseDraftVersionParametersConditionalBlockParameters] or [shared.VelocityLimitParams].
A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` Satisfied by [shared.UnionString], [shared.UnionFloat], [AuthRuleV2NewParamsBodyCreateAuthRuleRequestAccountTokensParametersConditionalBlockParametersConditionsValueArray].
Parameters for the current version of the Auth Rule Satisfied by [AuthRuleV2NewParamsBodyCreateAuthRuleRequestAccountTokensParametersConditionalBlockParameters], [shared.VelocityLimitParams], [AuthRuleV2NewParamsBodyCreateAuthRuleRequestAccountTokensParameters].
A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` Satisfied by [shared.UnionString], [shared.UnionFloat], [AuthRuleV2NewParamsBodyCreateAuthRuleRequestCardTokensParametersConditionalBlockParametersConditionsValueArray].
Parameters for the current version of the Auth Rule Satisfied by [AuthRuleV2NewParamsBodyCreateAuthRuleRequestCardTokensParametersConditionalBlockParameters], [shared.VelocityLimitParams], [AuthRuleV2NewParamsBodyCreateAuthRuleRequestCardTokensParameters].
A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` Satisfied by [shared.UnionString], [shared.UnionFloat], [AuthRuleV2NewParamsBodyCreateAuthRuleRequestProgramLevelParametersConditionalBlockParametersConditionsValueArray].
Parameters for the current version of the Auth Rule Satisfied by [AuthRuleV2NewParamsBodyCreateAuthRuleRequestProgramLevelParametersConditionalBlockParameters], [shared.VelocityLimitParams], [AuthRuleV2NewParamsBodyCreateAuthRuleRequestProgramLevelParameters].
Satisfied by [AuthRuleV2NewParamsBodyCreateAuthRuleRequestAccountTokens], [AuthRuleV2NewParamsBodyCreateAuthRuleRequestCardTokens], [AuthRuleV2NewParamsBodyCreateAuthRuleRequestProgramLevel], [AuthRuleV2NewParamsBody].
A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` Union satisfied by [shared.UnionString], [shared.UnionFloat] or [AuthRuleV2NewResponseCurrentVersionParametersConditionalBlockParametersConditionsValueArray].
Parameters for the current version of the Auth Rule Union satisfied by [AuthRuleV2NewResponseCurrentVersionParametersConditionalBlockParameters] or [shared.VelocityLimitParams].
A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` Union satisfied by [shared.UnionString], [shared.UnionFloat] or [AuthRuleV2NewResponseDraftVersionParametersConditionalBlockParametersConditionsValueArray].
Parameters for the current version of the Auth Rule Union satisfied by [AuthRuleV2NewResponseDraftVersionParametersConditionalBlockParameters] or [shared.VelocityLimitParams].
A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` Union satisfied by [shared.UnionString], [shared.UnionFloat] or [AuthRuleV2PromoteResponseCurrentVersionParametersConditionalBlockParametersConditionsValueArray].
Parameters for the current version of the Auth Rule Union satisfied by [AuthRuleV2PromoteResponseCurrentVersionParametersConditionalBlockParameters] or [shared.VelocityLimitParams].
A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` Union satisfied by [shared.UnionString], [shared.UnionFloat] or [AuthRuleV2PromoteResponseDraftVersionParametersConditionalBlockParametersConditionsValueArray].
Parameters for the current version of the Auth Rule Union satisfied by [AuthRuleV2PromoteResponseDraftVersionParametersConditionalBlockParameters] or [shared.VelocityLimitParams].
A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` Union satisfied by [shared.UnionString], [shared.UnionFloat] or [AuthRuleV2UpdateResponseCurrentVersionParametersConditionalBlockParametersConditionsValueArray].
Parameters for the current version of the Auth Rule Union satisfied by [AuthRuleV2UpdateResponseCurrentVersionParametersConditionalBlockParameters] or [shared.VelocityLimitParams].
A regex string, to be used with `MATCHES` or `DOES_NOT_MATCH` Union satisfied by [shared.UnionString], [shared.UnionFloat] or [AuthRuleV2UpdateResponseDraftVersionParametersConditionalBlockParametersConditionsValueArray].
Parameters for the current version of the Auth Rule Union satisfied by [AuthRuleV2UpdateResponseDraftVersionParametersConditionalBlockParameters] or [shared.VelocityLimitParams].
Satisfied by [ExternalBankAccountNewParamsBodyBankVerifiedCreateBankAccountAPIRequest], [ExternalBankAccountNewParamsBodyPlaidCreateBankAccountAPIRequest], [ExternalBankAccountNewParamsBodyExternallyVerifiedCreateBankAccountAPIRequest], [ExternalBankAccountNewParamsBody].

# Type aliases

The type of KYC exemption for a KYC-Exempt Account Holder.
Specifies the type of KYC Exempt user.
Specifies the type of KYB workflow to run.
KYC and KYB evaluation states.
Status Reasons for KYC/KYB enrollment states.
No description provided by the author
An account holder document's upload status for use within the simulation.
Status reason that will be associated with the simulated account holder status.
An account holder's status for use within the simulation.
No description provided by the author
The type of KYC exemption for a KYC-Exempt Account Holder.
<Deprecated.
Status Reasons for KYC/KYB enrollment states.
The type of Account Holder.
KYC and KYB evaluation states.
Status Reasons for KYC/KYB enrollment states.
<Deprecated.
No description provided by the author
The type of document to upload.
The type of Account Holder.
KYC and KYB evaluation states.
No description provided by the author
Account state: - `ACTIVE` - Account is able to transact and create new cards.
Account states.
This is an alias to an internal type.
This is an alias to an internal type.
Type of financial account.
Get the aggregate balance for a given Financial Account type.
This is an alias to an internal type.
The attribute to target.
The operation to apply to the attribute.
No description provided by the author
No description provided by the author
The attribute to target.
The operation to apply to the attribute.
No description provided by the author
No description provided by the author
The state of the Auth Rule.
The type of Auth Rule.
Indicates whether the Auth Rule is ACTIVE or INACTIVE This is an alias to an internal type.
The attribute to target.
The operation to apply to the attribute.
No description provided by the author
No description provided by the author
The attribute to target.
The operation to apply to the attribute.
No description provided by the author
No description provided by the author
The state of the Auth Rule.
The type of Auth Rule.
The attribute to target.
The operation to apply to the attribute.
No description provided by the author
No description provided by the author
The attribute to target.
The operation to apply to the attribute.
No description provided by the author
No description provided by the author
The attribute to target.
The operation to apply to the attribute.
No description provided by the author
No description provided by the author
The state of the Auth Rule.
The type of Auth Rule.
The attribute to target.
The operation to apply to the attribute.
No description provided by the author
No description provided by the author
The attribute to target.
The operation to apply to the attribute.
No description provided by the author
No description provided by the author
The state of the Auth Rule.
The type of Auth Rule.
The attribute to target.
The operation to apply to the attribute.
No description provided by the author
No description provided by the author
The attribute to target.
The operation to apply to the attribute.
No description provided by the author
No description provided by the author
The state of the Auth Rule.
The type of Auth Rule.
The attribute to target.
The operation to apply to the attribute.
No description provided by the author
No description provided by the author
The type of Auth Rule.
The attribute to target.
The operation to apply to the attribute.
No description provided by the author
No description provided by the author
The type of Auth Rule.
The attribute to target.
The operation to apply to the attribute.
No description provided by the author
No description provided by the author
The type of Auth Rule.
The type of Auth Rule.
The attribute to target.
The operation to apply to the attribute.
No description provided by the author
No description provided by the author
The attribute to target.
The operation to apply to the attribute.
No description provided by the author
No description provided by the author
The state of the Auth Rule.
The type of Auth Rule.
The attribute to target.
The operation to apply to the attribute.
No description provided by the author
No description provided by the author
The attribute to target.
The operation to apply to the attribute.
No description provided by the author
No description provided by the author
The state of the Auth Rule.
The type of Auth Rule.
The desired state of the Auth Rule.
The attribute to target.
The operation to apply to the attribute.
No description provided by the author
No description provided by the author
The attribute to target.
The operation to apply to the attribute.
No description provided by the author
No description provided by the author
The state of the Auth Rule.
The type of Auth Rule.
Type of financial account.
List balances for a given Financial Account type.
Book Transfer category to be returned.
Book transfer result to be returned.
Book transfer status to be returned.
Category of the book transfer.
Type of book_transfer.
Category of the book transfer.
No description provided by the author
APPROVED financial events were successful while DECLINED financial events were declined by user, Lithic, or the network.
APPROVED transactions were successful while DECLINED transactions were declined by user, Lithic, or the network.
Status types: _ `DECLINED` - The transfer was declined.
Type of financial account.
Financial Transaction category to be returned.
Financial Transaction result to be returned.
Financial Transaction status to be returned.
State of funding source.
Types of funding source: - `DEPOSITORY_CHECKING` - Bank checking account.
Returns cards with the specified state.
Shipping method for the card.
Card state values: - `OPEN` - Card will approve authorizations (if they match card and account parameters).
Card types: - `VIRTUAL` - Card will authorize at any merchant and can be added to a digital wallet like Apple Pay or Google Pay (if the card program is digital wallet-enabled).
Indicates if a card is blocked due a PIN status issue (e.g.
Name of digital wallet provider.
Shipping method for the card.
Shipping method for the card.
Card state values: - `CLOSED` - Card will no longer approve authorizations.
Card types: - `VIRTUAL` - Card will authorize at any merchant and can be added to a digital wallet like Apple Pay or Google Pay (if the card program is digital wallet-enabled).
Indicates if a card is blocked due a PIN status issue (e.g.
Card state values: - `CLOSED` - Card will no longer approve authorizations.
This is an alias to an internal type.
Whether the Cardholder has Approved or Declined the issued Challenge.
ISO 4217 currency.
Card network.
Upload status types: - `DELETED` - Evidence was deleted.
List disputes of a specific status.
Reason for dispute.
Dispute reason: - `ATM_CASH_MISDISPENSE`: ATM cash misdispense.
Reason for the dispute resolution: - `CASE_LOST`: This case was lost at final arbitration.
Status types: - `NEW` - New dispute case is opened.
Reason for dispute.
Describes the document and the required document image uploads required to re-run KYC This is an alias to an internal type.
Type of documentation to be submitted for verification of an account holder This is an alias to an internal type.
Represents a single image of the document to upload.
Type of image to upload.
Status of an account holder's document upload.
The status reasons for an account holder document upload that is not ACCEPTED This is an alias to an internal type.
A flag indicating whether the transaction is tax exempt or not.
The type of fuel purchased.
Unit of measure for fuel disbursement.
The type of fuel service.
No description provided by the author
Event types: - `account_holder.created` - Notification that a new account holder has been created and was not rejected.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Event type to send example message for.
No description provided by the author
Owner Type.
Account State.
Account Type.
Verification Method.
Verification State.
No description provided by the author
No description provided by the author
No description provided by the author
Owner Type.
Account State.
Account Type.
Verification Method.
Verification State.
Owner Type.
Account State.
Account Type.
Verification Method.
Verification State.
Account Type.
Account Type.
Verification Method.
Account Type.
Owner Type.
Account State.
Account Type.
Verification Method.
Verification State.
Owner Type.
Account State.
Account Type.
Verification Method.
Verification State.
Account State.
Account Type.
Verification State.
Owner Type.
Account State.
Account Type.
Verification Method.
Verification State.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
External Payment category to be returned.
External Payment result to be returned.
Book transfer status to be returned.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Type of financial account.
State of the financial account.
State of the financial account.
List financial accounts of a given type.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Status types: - `CARD` - Issuing card transaction.
APPROVED financial events were successful while DECLINED financial events were declined by user, Lithic, or the network.
No description provided by the author
Financial Transaction category to be returned.
Financial Transaction result to be returned.
Financial Transaction status to be returned.
APPROVED transactions were successful while DECLINED transactions were declined by user, Lithic, or the network.
Status types: - `DECLINED` - The transaction was declined.
Specifies the type of KYB workflow to run.
Specifies the type of KYC Exempt user.
Specifies the workflow type.
Specifies the type of KYC workflow to run.
No description provided by the author
No description provided by the author
Management operation category to be returned.
Management operation status to be returned.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
The status of the event attempt.
No description provided by the author
Payment category.
No description provided by the author
No description provided by the author
APPROVED financial events were successful while DECLINED financial events were declined by user, Lithic, or the network.
Event types: - `ACH_ORIGINATION_INITIATED` - ACH origination received and pending approval/release from an ACH hold.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APPROVED payments were successful while DECLINED payments were declined by Lithic or returned.
Decline reason.
Event Type.
Request Result.
Receipt Type.
Request Result.
Request Result.
Request Result.
No description provided by the author
Status types: - `DECLINED` - The payment was declined.
The type of the endpoint.
The type of the endpoint.
The type of the endpoint.
Card network where the transaction took place.
The type of settlement record.
Card network where the transaction took place.
This is an alias to an internal type.
Spend limit duration values: - `ANNUALLY` - Card will authorize transactions up to spend limit for the trailing year.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Type of account/card that is being used for the transaction.
Mastercard only: Indicates whether the network would have considered the authentication request to be low risk or not.
Type of authentication request - i.e., the type of transaction or interaction is causing the merchant to request an authentication.
Indicates the outcome of the 3DS authentication process.
Indicates whether the expiration date provided by the cardholder during checkout matches Lithic's record of the card's expiration date.
Channel in which the authentication occurs.
Entity that made the authentication decision.
The delivery time frame for the merchandise.
Indicates whether the purchase is for merchandise that is available now or at a future date.
Indicates whether the cardholder is reordering previously purchased merchandise.
Shipping method that the cardholder chose for the transaction.
Either PAYMENT_AUTHENTICATION or NON_PAYMENT_AUTHENTICATION.
Type of 3DS Requestor Initiated (3RI) request i.e., a 3DS authentication that takes place at the initiation of the merchant rather than the cardholder.
Type of the transaction for which a 3DS authentication request is occurring.
When set will use the following values as part of the Simulated Authentication.
Enum representing the result of the tokenization event.
Enum representing the type of tokenization event that occurred.
Filter for tokenizations by tokenization channel.
The communication method that the user has selected to use to receive the authentication code.
The source of the tokenization request.
The decision that the Digital Wallet's recommend.
The status of the tokenization request.
The channel through which the tokenization was made.
The entity that requested the tokenization.
Whether an acquirer exemption applied to the transaction.
Indicates what the outcome of the 3DS authentication process is.
Indicates which party made the 3DS authentication decision.
Indicates whether chargeback liability shift applies to the transaction.
Indicates whether a 3DS challenge flow was used, and if so, what the verification method was.
Indicates whether a transaction is considered 3DS authenticated.
No description provided by the author
Indicates whether the transaction event is a credit or debit to the account.
Result of the transaction.
Type of transaction event.
Filters for transactions using transaction result field.
Card network of the authorization.
Card presence indicator.
Cardholder presence indicator.
Method of entry for the PAN.
The person that is designated to swipe the card.
Status of whether the POS is able to accept PINs.
POS Type.
`APPROVED` or decline reason.
Type of event to simulate.
Type of event to simulate.
Status of the transaction.
The wallet_type field will indicate the source of the token.
Status types: - `TRANSFER` - Internal transfer of funds between financial accounts in your program.
APPROVED financial events were successful while DECLINED financial events were declined by user, Lithic, or the network.
No description provided by the author
APPROVED transactions were successful while DECLINED transactions were declined by user, Lithic, or the network.
Status types: - `DECLINED` - The transfer was declined.
This is an alias to an internal type.
This is an alias to an internal type.
The size of the trailing window to calculate Spend Velocity over in seconds.
The window of time to calculate Spend Velocity over.
This is an alias to an internal type.
No description provided by the author