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