export interface IPayioCompanyNatipayCredential {
    accessToken: string;
    refreshToken: string;
    expiresAt: Date;
    expiresIn: number;
    tokenType: string;
}
