/** * Solidex.Order, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null * 1.0 * undefined */ import * as __model from '../model'; export interface UpdatePartyRequest { /** format: uuid */ applicationId?: string; /** format: uuid */ id?: string; /** format: date-time */ date?: string; type?: string; subject?: string; content?: string; starred?: boolean; important?: boolean; unread?: boolean; partyType?: __model.PartyType; /** format: uuid */ statusId?: string; /** format: uuid */ orderId?: string; labels?: __model.SettingViewModel[]; }