wallee
Version:
TypeScript/JavaScript client for wallee
38 lines (37 loc) • 1.31 kB
TypeScript
/**
*
* @export
* @interface PaymentAdjustmentType
*/
export interface PaymentAdjustmentType {
/**
* The localized name of the object.
* @type {{ [key: string]: string; }}
* @memberof PaymentAdjustmentType
*/
readonly name?: {
[key: string]: string;
};
/**
* The localized description of the object.
* @type {{ [key: string]: string; }}
* @memberof PaymentAdjustmentType
*/
readonly description?: {
[key: string]: string;
};
/**
* A unique identifier for the object.
* @type {number}
* @memberof PaymentAdjustmentType
*/
readonly id?: number;
}
/**
* Check if a given object implements the PaymentAdjustmentType interface.
*/
export declare function instanceOfPaymentAdjustmentType(value: object): value is PaymentAdjustmentType;
export declare function PaymentAdjustmentTypeFromJSON(json: any): PaymentAdjustmentType;
export declare function PaymentAdjustmentTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentAdjustmentType;
export declare function PaymentAdjustmentTypeToJSON(json: any): PaymentAdjustmentType;
export declare function PaymentAdjustmentTypeToJSONTyped(value?: Omit<PaymentAdjustmentType, 'name' | 'description' | 'id'> | null, ignoreDiscriminator?: boolean): any;