cecon-interfaces
Version:
Interfaces de Projetos Cecon
10 lines (9 loc) • 376 B
TypeScript
import { IPayioCompanyNatipayCredential } from '../interfaces/i-natipay-credential';
export declare class PayioCompanyNatipayCredentialEntity implements IPayioCompanyNatipayCredential {
accessToken: string;
expiresAt: Date;
expiresIn: number;
refreshToken: string;
tokenType: string;
constructor(data?: Partial<PayioCompanyNatipayCredentialEntity>);
}