/** * 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 FundSdkDto */ export interface FundSdkDto { /** * The fund's Endaoment id * @type {string} * @memberof FundSdkDto */ id: string; /** * The fund's name * @type {string} * @memberof FundSdkDto */ name: string; /** * The fund's contract address * @type {string} * @memberof FundSdkDto */ contractAddress: string; /** * The fund's logo url * @type {string} * @memberof FundSdkDto */ logoUrl: string | null; /** * The fund's description * @type {string} * @memberof FundSdkDto */ description: string; /** * The fund's Endaoment url * @type {string} * @memberof FundSdkDto */ endaomentUrl: string; } /** * Check if a given object implements the FundSdkDto interface. */ export declare function instanceOfFundSdkDto(value: object): boolean; export declare function FundSdkDtoFromJSON(json: any): FundSdkDto; export declare function FundSdkDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): FundSdkDto; export declare function FundSdkDtoToJSON(value?: FundSdkDto | null): any;