/** * @export * @class PoisEndpointCredentials */ export declare class PoisEndpointCredentials { /** * The username required to authenticate with the POIS server. * @type {string} * @memberof PoisEndpointCredentials */ username?: string; /** * The password required for authentication with the POIS server. * @type {string} * @memberof PoisEndpointCredentials */ password?: string; constructor(obj?: Partial); } export default PoisEndpointCredentials;