import {Model, model, property} from '@loopback/repository'; @model() export class AuthRefreshTokenRequest extends Model { @property({ type: 'string', required: true, }) refreshToken: string; @property({ type: 'string', }) tenantId?: string; constructor(data?: Partial) { super(data); } }