Interface UpdatePaymentMethodDto

DTO for updating a payment method's alias and allowed API keys.

interface UpdatePaymentMethodDto {
    alias?: string;
    allowedApiKeyIds?: null | string[];
}

Properties

alias?: string
allowedApiKeyIds?: null | string[]