UNPKG

cecon-interfaces

Version:
19 lines (18 loc) 447 B
export interface IPayioToken { appId: string; companyId: string | null; createdAt: Date; /** @deprecated use machineUid instead */ deviceId: string | null; machineUid: string | null; expiresAt: Date; id: string; ipAddress: string | null; isRevoked: boolean; refreshToken: string; revokedAt: Date | null; sandbox: boolean; updatedAt: Date; userAgent: string | null; userId: string; }