/* tslint:disable */ /* eslint-disable */ /** * The Association for Cube Commons * The CubeCommons API caters to each and every whim of the Frontend, i.e. it receives, bundles, packages and formats data exactly as the Frontend needs it. * * The version of the OpenAPI document: 0.9.95 * Contact: tech@cubecommons.ca * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Update Profile Request * @export * @interface UpdateProfileRequest */ export interface UpdateProfileRequest { /** * The name of the organization * @type {string} * @memberof UpdateProfileRequest */ 'organization'?: string; /** * The URL of the organization\'s website * @type {string} * @memberof UpdateProfileRequest */ 'website'?: string; /** * The unique identifier of the image file used as the profile\'s hero image * @type {string} * @memberof UpdateProfileRequest */ 'heroFileId'?: string; /** * The unique identifier of the image file used as the profile\'s logo * @type {string} * @memberof UpdateProfileRequest */ 'logoFileId'?: string; /** * A brief description of the profile * @type {string} * @memberof UpdateProfileRequest */ 'description'?: string; /** * The unique identifier of the audio file used as a description of the profile * @type {string} * @memberof UpdateProfileRequest */ 'descriptionFileId'?: string; /** * The programming budget of the organization * @type {string} * @memberof UpdateProfileRequest */ 'budget'?: string; /** * The status of the profile * @type {string} * @memberof UpdateProfileRequest */ 'status'?: string; }