/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Validate input for updating an xblock. */ export type UpdateXblock = { /** * The xblock locator to update. */ xblock_id: string; /** * New display name. */ display_name?: string; /** * New HTML content. Only applicable to component blocks (html, problem). */ content?: string; };