wallee
Version:
TypeScript/JavaScript client for wallee
23 lines (22 loc) • 504 B
TypeScript
declare class PaymentConnectorFeature {
/**
* The name of the feature.
*/
'displayName'?: string;
/**
* A unique identifier for the object.
*/
'id'?: number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { PaymentConnectorFeature };