tribufu-js/src/models/UserType.ts
2025-12-27 10:02:16 -03:00

53 lines
1.2 KiB
TypeScript

/* tslint:disable */
/* eslint-disable */
/**
* Tribufu API
* API to access Tribufu services.
*
* The version of the OpenAPI document: 1.3.0
* Contact: contact@tribufu.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
*/
export const UserType = {
User: 'user',
Bot: 'bot'
} as const;
export type UserType = typeof UserType[keyof typeof UserType];
export function instanceOfUserType(value: any): boolean {
for (const key in UserType) {
if (Object.prototype.hasOwnProperty.call(UserType, key)) {
if (UserType[key as keyof typeof UserType] === value) {
return true;
}
}
}
return false;
}
export function UserTypeFromJSON(json: any): UserType {
return UserTypeFromJSONTyped(json, false);
}
export function UserTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserType {
return json as UserType;
}
export function UserTypeToJSON(value?: UserType | null): any {
return value as any;
}
export function UserTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): UserType {
return value as UserType;
}