import { MockOrderShippingMethod } from '@daffodil/order/testing'
class MockOrderShippingMethod implements DaffOrderShippingMethod {
rate_id: faker.string.uuid() = faker.string.uuid()
address_id: faker.string.uuid() = faker.string.uuid()
order_id: faker.string.uuid() = faker.string.uuid()
created_at: faker.date.past().toString() = faker.date.past().toString()
updated_at: faker.date.past().toString() = faker.date.past().toString()
carrier: faker.lorem.word() = faker.lorem.word()
carrier_title: faker.lorem.word() = faker.lorem.word()
code: faker.lorem.word() = faker.lorem.word()
method: faker.lorem.word() = faker.lorem.word()
method_description: faker.lorem.word() = faker.lorem.word()
price: faker.number.int({ min: 1, max: 1000 }) = faker.number.int({ min: 1, max: 1000 })
error_message: faker.lorem.word() = faker.lorem.word()
method_title: faker.lorem.word() = faker.lorem.word()
}