Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | import { AllRentalItemsResponse } from '../../models/allRentalItemsResponse'; export const allRentalItemsResponseData: AllRentalItemsResponse = { rental_items: [ { id: 1, visible_id: '0000', record: 'Nothing', name: '佃煮大学', product_number: 'A0001', description: '佃煮大学は、あります!(大嘘)', purchase_year: 2025, purchase_price: 10000, durability: 100, is_depreciation: false, connector: ['HDMIオス', 'HDMIオス'], is_rent: false, color: 'red', created_at: '2025-01-01 11:08:46.748730482', updated_at: '2025-01-01 11:08:46.748730482', recipient: 'そばたん', rental_description: 'そぽたんのパチモンがお借りしちゃうそば!', latest_rent_at: '2025-10-01 11:08:46.123456789', scheduled_replace_at: '2026-01-21 00:00:00 +00:00', latest_replace_at: null, }, { id: 2, visible_id: '0001', record: 'Qr', name: 'そぽたん煮', product_number: '', description: '雑煮と似た味がするらしい', purchase_year: null, purchase_price: null, durability: null, is_depreciation: true, connector: [], is_rent: true, color: '', created_at: '2025-01-01 11:08:46.748730482', updated_at: '2025-01-01 11:08:46.748730482', recipient: '', rental_description: '', latest_rent_at: null, scheduled_replace_at: null, latest_replace_at: '2025-10-01 11:08:46.123456789', }, ], }; |