Interface IAuthenticationParams

IAuthenticationParams Interface representing the parameters required for authentication.

const authParams: IAuthenticationParams = {
apiKey: "your_api_key",
secretKey: "your_secret_key"
};
interface IAuthenticationParams {
    apiKey: string;
    secretKey: string;
}

Properties

Properties

apiKey: string

The API key used for authentication.

secretKey: string

The secret key used for authentication.