/** * 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 EndaomentSdkOrg */ export interface EndaomentSdkOrg { /** * The org's Endaoment id * @type {string} * @memberof EndaomentSdkOrg */ id: string; /** * The org's name * @type {string} * @memberof EndaomentSdkOrg */ name: string; /** * The org's EIN * @type {string} * @memberof EndaomentSdkOrg */ ein: string; /** * The org's contract address * @type {string} * @memberof EndaomentSdkOrg */ contractAddress: string; /** * The org's logo url * @type {string} * @memberof EndaomentSdkOrg */ logoUrl: string; /** * The org's NTEE code * @type {string} * @memberof EndaomentSdkOrg */ nteeCode: string; /** * The org's NTEE description * @type {string} * @memberof EndaomentSdkOrg */ nteeDescription: string; /** * The org's description * @type {string} * @memberof EndaomentSdkOrg */ description: string | null; /** * The org's Endaoment url * @type {string} * @memberof EndaomentSdkOrg */ endaomentUrl: string; } /** * Check if a given object implements the EndaomentSdkOrg interface. */ export declare function instanceOfEndaomentSdkOrg(value: object): boolean; export declare function EndaomentSdkOrgFromJSON(json: any): EndaomentSdkOrg; export declare function EndaomentSdkOrgFromJSONTyped(json: any, ignoreDiscriminator: boolean): EndaomentSdkOrg; export declare function EndaomentSdkOrgToJSON(value?: EndaomentSdkOrg | null): any;