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