@central-credit/engine
Version:
Engine to handle the Serasa requests
13 lines (12 loc) • 361 B
TypeScript
import { RecordWithRelations } from '../models';
export declare class RecordBuilder {
private record;
private parameters;
constructor(record: RecordWithRelations);
addParameter(paramName: string, paramValue: string): void;
private getValueParameter;
private getFillSize;
private getValue;
private isValid;
build(): string;
}