import Faker from 'faker' interface IAuthorized { should_validate_phone: boolean redirects: {} success: boolean transaction_id: string user: { id: string } } export default { should_validate_phone: false, redirects: {}, success: true, transaction_id: Faker.random.uuid(), user: { id: Faker.random.uuid() } } as IAuthorized