wallee
Version:
TypeScript/JavaScript client for wallee
28 lines (27 loc) • 979 B
TypeScript
import { AbstractDebtCollectionCaseUpdate } from "./AbstractDebtCollectionCaseUpdate";
declare class DebtCollectionCaseCreate extends AbstractDebtCollectionCaseUpdate {
/**
* The configuration that the case is processed with.
*/
'collectorConfiguration'?: number;
/**
* A client generated nonce which identifies the entity to be created. Subsequent creation requests with the same external ID will not create new entities but return the initially created entity instead.
*/
'externalId': string;
/**
* A unique reference to identify the debt collection case in communication with the debtor.
*/
'reference': string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { DebtCollectionCaseCreate };