Files
sdk-js/src/models/GrantType.ts
2025-12-27 10:02:16 -03:00

56 lines
1.4 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 GrantType = {
AuthorizationCode: 'authorization_code',
ClientCredentials: 'client_credentials',
Password: 'password',
RefreshToken: 'refresh_token'
} as const;
export type GrantType = typeof GrantType[keyof typeof GrantType];
export function instanceOfGrantType(value: any): boolean {
for (const key in GrantType) {
if (Object.prototype.hasOwnProperty.call(GrantType, key)) {
if (GrantType[key as keyof typeof GrantType] === value) {
return true;
}
}
}
return false;
}
export function GrantTypeFromJSON(json: any): GrantType {
return GrantTypeFromJSONTyped(json, false);
}
export function GrantTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): GrantType {
return json as GrantType;
}
export function GrantTypeToJSON(value?: GrantType | null): any {
return value as any;
}
export function GrantTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): GrantType {
return value as GrantType;
}