UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
39 lines (38 loc) 1.36 kB
/** * AskNews API * AskNews API [![status](https://status.asknews.app/api/badge/2/status?style=for-the-badge)](https://status.asknews.app/status/prod) * * The version of the OpenAPI document: 0.24.22 * Contact: contact@emergentmethods.ai * * 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 UserProfileOrganization */ export interface UserProfileOrganization { /** * * @type {string} * @memberof UserProfileOrganization */ id: string; /** * * @type {string} * @memberof UserProfileOrganization */ role: string; } /** * Check if a given object implements the UserProfileOrganization interface. */ export declare function instanceOfUserProfileOrganization(value: object): value is UserProfileOrganization; export declare function UserProfileOrganizationFromJSON(json: any): UserProfileOrganization; export declare function UserProfileOrganizationFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserProfileOrganization; export declare function UserProfileOrganizationToJSON(json: any): UserProfileOrganization; export declare function UserProfileOrganizationToJSONTyped(value?: UserProfileOrganization | null, ignoreDiscriminator?: boolean): any;