wallee
Version:
TypeScript/JavaScript client for wallee
40 lines (39 loc) • 1.23 kB
TypeScript
import { SubscriptionProductState } from "./SubscriptionProductState";
declare class AbstractSubscriptionProductActive {
/**
* The payment methods that can be used to subscribe to this product. If none are selected, no restriction is applied.
*/
'allowedPaymentMethodConfigurations'?: Array<number>;
/**
* The period after which a subscription that has been suspended due to a failed payment is terminated.
*/
'failedPaymentSuspensionPeriod'?: string;
/**
* The name used to identify the product.
*/
'name'?: string;
/**
* Whether subscriptions can be switched to or from this product, or whether they are locked in.
*/
'productLocked'?: boolean;
/**
* When listing products, they can be sorted by this number.
*/
'sortOrder'?: number;
/**
* The object's current state.
*/
'state'?: SubscriptionProductState;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { AbstractSubscriptionProductActive };