/** * * @export * @interface PaymentInformationHashType */ export interface PaymentInformationHashType { /** * The name that describes the hash type. * @type {{ [key: string]: string; }} * @memberof PaymentInformationHashType */ readonly name?: { [key: string]: string; }; /** * A unique identifier for the object. * @type {number} * @memberof PaymentInformationHashType */ readonly id?: number; } /** * Check if a given object implements the PaymentInformationHashType interface. */ export declare function instanceOfPaymentInformationHashType(value: object): value is PaymentInformationHashType; export declare function PaymentInformationHashTypeFromJSON(json: any): PaymentInformationHashType; export declare function PaymentInformationHashTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentInformationHashType; export declare function PaymentInformationHashTypeToJSON(json: any): PaymentInformationHashType; export declare function PaymentInformationHashTypeToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;