wallee
Version:
TypeScript/JavaScript client for wallee
28 lines (27 loc) • 608 B
TypeScript
import { PaymentInformationHashType } from "./PaymentInformationHashType";
declare class PaymentInformationHash {
/**
* A unique identifier for the object.
*/
'id'?: number;
/**
*
*/
'type'?: PaymentInformationHashType;
/**
*
*/
'value'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { PaymentInformationHash };