2019-10-29 13:55:26 +11:00
|
|
|
<?php
|
2020-10-10 23:07:52 +11:00
|
|
|
/**
|
2019-10-29 13:55:26 +11:00
|
|
|
* @OA\Schema(
|
|
|
|
|
* schema="TaxRate",
|
|
|
|
|
* type="object",
|
2022-08-18 23:13:06 +10:00
|
|
|
* @OA\Property(property="id", type="string", example="Opnel5aKBz", description="Thie hashed id of the tax"),
|
|
|
|
|
* @OA\Property(property="name", type="string", example="GST", description="The tax name"),
|
|
|
|
|
* @OA\Property(property="rate", type="number", example="10", description="The tax rate"),
|
|
|
|
|
* @OA\Property(property="is_deleted", type="boolean", example=true, description="Boolean flag determining if the tax has been deleted"),
|
2019-10-29 13:55:26 +11:00
|
|
|
* )
|
2019-12-31 08:59:12 +11:00
|
|
|
*/
|