export interface PortalAuthentication { /** * the ordercloud username */ access_token: string; /** * the client id used when making token request */ refresh_token: string; /** * the issuer of the token - should always be https://auth.ordercloud.io */ expires_in: string; }