/**
 *
 * @export
 * @interface StartSessionRequest
 */
export interface StartSessionRequest {
    /**
     * Ip address of the user. It is required to start a session.
     * @type {string}
     * @memberof StartSessionRequest
     */
    ipAddress: string | null;
}
