1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Http/Controllers/OpenAPI/ExpenseCategorySchema.php
2022-08-12 20:44:09 +10:00

14 lines
810 B
PHP

<?php
/**
* @OA\Schema(
* schema="ExpenseCategory",
* type="object",
* @OA\Property(property="id", type="string", example="Opnel5aKBz", description="The expense hashed id"),
* @OA\Property(property="name", type="string", example="Accounting", description="The expense category name"),
* @OA\Property(property="user_id", type="string", example="XS987sD", description="The user hashed id"),
* @OA\Property(property="is_deleted", type="boolean", example=true, description="Flag determining whether the expense category has been deleted"),
* @OA\Property(property="updated_at", type="integer", example="2", description="The updated at timestamp"),
* @OA\Property(property="created_at", type="integer", example="2", description="The created at timestamp"),
* )
*/