CreateOrganisation200ResponseDataLogoUrl.ts•1.58 kB
/* tslint:disable */
/* eslint-disable */
/**
* Squad API
* API for managing Squad resources
*
* The version of the OpenAPI document: 4.0.0
* Contact: help@meetsquad.ai
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { mapValues } from '../runtime.js';
/**
* URL to the organisation's logo
* @export
* @interface CreateOrganisation200ResponseDataLogoUrl
*/
export interface CreateOrganisation200ResponseDataLogoUrl {
}
/**
* Check if a given object implements the CreateOrganisation200ResponseDataLogoUrl interface.
*/
export function instanceOfCreateOrganisation200ResponseDataLogoUrl(value: object): value is CreateOrganisation200ResponseDataLogoUrl {
return true;
}
export function CreateOrganisation200ResponseDataLogoUrlFromJSON(json: any): CreateOrganisation200ResponseDataLogoUrl {
return CreateOrganisation200ResponseDataLogoUrlFromJSONTyped(json, false);
}
export function CreateOrganisation200ResponseDataLogoUrlFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateOrganisation200ResponseDataLogoUrl {
return json;
}
export function CreateOrganisation200ResponseDataLogoUrlToJSON(json: any): CreateOrganisation200ResponseDataLogoUrl {
return CreateOrganisation200ResponseDataLogoUrlToJSONTyped(json, false);
}
export function CreateOrganisation200ResponseDataLogoUrlToJSONTyped(value?: CreateOrganisation200ResponseDataLogoUrl | null, ignoreDiscriminator: boolean = false): any {
return value;
}