@emergentmethods/asknews-typescript-sdk
Version:
Typescript SDK for AskNews API
46 lines (45 loc) • 1.55 kB
TypeScript
/**
* AskNews API
* AskNews API
*
* The version of the OpenAPI document: 0.19.10
* 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 ServiceAccountProfile
*/
export interface ServiceAccountProfile {
/**
*
* @type {string}
* @memberof ServiceAccountProfile
*/
identityType?: ServiceAccountProfileIdentityTypeEnum;
/**
*
* @type {string}
* @memberof ServiceAccountProfile
*/
impersonatesPlan: string;
}
/**
* @export
*/
export declare const ServiceAccountProfileIdentityTypeEnum: {
readonly ServiceAccount: "service_account";
};
export type ServiceAccountProfileIdentityTypeEnum = typeof ServiceAccountProfileIdentityTypeEnum[keyof typeof ServiceAccountProfileIdentityTypeEnum];
/**
* Check if a given object implements the ServiceAccountProfile interface.
*/
export declare function instanceOfServiceAccountProfile(value: object): value is ServiceAccountProfile;
export declare function ServiceAccountProfileFromJSON(json: any): ServiceAccountProfile;
export declare function ServiceAccountProfileFromJSONTyped(json: any, ignoreDiscriminator: boolean): ServiceAccountProfile;
export declare function ServiceAccountProfileToJSON(json: any): ServiceAccountProfile;
export declare function ServiceAccountProfileToJSONTyped(value?: ServiceAccountProfile | null, ignoreDiscriminator?: boolean): any;