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