cecon-interfaces
Version:
Interfaces de Projetos Cecon
19 lines (18 loc) • 718 B
TypeScript
import { EFirebankWithdrawDetailsKey } from '../../enums';
import { IFirebankWithdrawPost, IFirebankWithdrawPostDetails, IFirebankWithdrawPostResponse } from '../../interfaces';
export declare class FirebankWithdrawPostEntity implements IFirebankWithdrawPost {
details: FirebankWithdrawPostDetailsEntity;
externalId: string;
type: string;
value: number;
}
export declare class FirebankWithdrawPostDetailsEntity implements IFirebankWithdrawPostDetails {
document: string;
key: string;
keyType: EFirebankWithdrawDetailsKey;
name: string;
}
export declare class FirebankWithdrawPostResponseEntity implements IFirebankWithdrawPostResponse {
transactionId: string;
status: string;
}