/** * Endaoment API * The official Endaoment API & SDK endpoints * * The version of the OpenAPI document: 0.0.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface FundDto */ export interface FundDto { /** * The fund's Endaoment id * @type {string} * @memberof FundDto */ id: string; /** * The fund's name * @type {string} * @memberof FundDto */ name: string; /** * The fund's contract address * @type {string} * @memberof FundDto */ contractAddress: string; /** * The fund's logo url * @type {object} * @memberof FundDto */ logoUrl: object | null; /** * The fund's description * @type {string} * @memberof FundDto */ description: string; /** * The fund's Endaoment url * @type {string} * @memberof FundDto */ endaomentUrl: string; } /** * Check if a given object implements the FundDto interface. */ export declare function instanceOfFundDto(value: object): boolean; export declare function FundDtoFromJSON(json: any): FundDto; export declare function FundDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): FundDto; export declare function FundDtoToJSON(value?: FundDto | null): any;