/**
 * The PnlTotalResponse model module.
 * @module model/PnlTotalResponse
 * @version v1
 */
export default class PnlTotalResponse {
    /**
     * Constructs a <code>PnlTotalResponse</code> from a plain JavaScript object, optionally creating a new instance.
     * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
     * @param {Object} data The plain JavaScript object bearing properties of interest.
     * @param {module:model/PnlTotalResponse} obj Optional instance to populate.
     * @return {module:model/PnlTotalResponse} The populated <code>PnlTotalResponse</code> instance.
     */
    static constructFromObject(data: any, obj: any): any;
}
