86 lines
2.2 KiB
Dart
86 lines
2.2 KiB
Dart
const dynamic kMockProducts = '''
|
|
{
|
|
"data": [
|
|
{
|
|
"id": "yMYerkEaOA",
|
|
"user_id": "MVyb8mdvAZ",
|
|
"assigned_user_id": "",
|
|
"product_key": "Bass",
|
|
"notes": "Rickenbacker 4001S",
|
|
"cost": 20,
|
|
"price": 20,
|
|
"quantity": 1,
|
|
"tax_name1": "",
|
|
"tax_rate1": 0,
|
|
"tax_name2": "",
|
|
"tax_rate2": 0,
|
|
"tax_name3": "",
|
|
"tax_rate3": 0,
|
|
"updated_at": 1573652889,
|
|
"archived_at": null,
|
|
"custom_value1": "",
|
|
"custom_value2": "",
|
|
"custom_value3": "",
|
|
"custom_value4": "",
|
|
"is_deleted": false
|
|
},
|
|
{
|
|
"id": "yMYerkEaOB",
|
|
"user_id": "MVyb8mdvAZ",
|
|
"assigned_user_id": "",
|
|
"product_key": "Guitar",
|
|
"notes": "Gibson Les Paul",
|
|
"cost": 50,
|
|
"price": 50,
|
|
"quantity": 1,
|
|
"tax_name1": "",
|
|
"tax_rate1": 0,
|
|
"tax_name2": "",
|
|
"tax_rate2": 0,
|
|
"tax_name3": "",
|
|
"tax_rate3": 0,
|
|
"updated_at": 1573652889,
|
|
"archived_at": null,
|
|
"custom_value1": "",
|
|
"custom_value2": "",
|
|
"custom_value3": "",
|
|
"custom_value4": "",
|
|
"is_deleted": false
|
|
},
|
|
{
|
|
"id": "yMYerkEaOC",
|
|
"user_id": "MVyb8mdvAZ",
|
|
"assigned_user_id": "",
|
|
"product_key": "Drums",
|
|
"notes": "Ludwig Drum Co",
|
|
"cost": 30,
|
|
"price": 30,
|
|
"quantity": 1,
|
|
"tax_name1": "",
|
|
"tax_rate1": 0,
|
|
"tax_name2": "",
|
|
"tax_rate2": 0,
|
|
"tax_name3": "",
|
|
"tax_rate3": 0,
|
|
"updated_at": 1573652889,
|
|
"archived_at": null,
|
|
"custom_value1": "",
|
|
"custom_value2": "",
|
|
"custom_value3": "",
|
|
"custom_value4": "",
|
|
"is_deleted": false
|
|
}
|
|
],
|
|
"meta": {
|
|
"pagination": {
|
|
"total": 0,
|
|
"count": 0,
|
|
"per_page": 5000,
|
|
"current_page": 1,
|
|
"total_pages": 1,
|
|
"links": []
|
|
}
|
|
}
|
|
}
|
|
''';
|