/**
 * The CoreMemRawResponse model module.
 * @module model/CoreMemRawResponse
 * @version v1
 */
export default class CoreMemRawResponse {
    /**
     * Constructs a <code>CoreMemRawResponse</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/CoreMemRawResponse} obj Optional instance to populate.
     * @return {module:model/CoreMemRawResponse} The populated <code>CoreMemRawResponse</code> instance.
     */
    static constructFromObject(data: any, obj: any): any;
}
