2020-05-23 05:28:24 +02:00
|
|
|
<?php
|
2020-10-10 14:07:52 +02:00
|
|
|
/**
|
2020-05-23 05:28:24 +02:00
|
|
|
* @OA\Schema(
|
|
|
|
* schema="PaymentTerm",
|
|
|
|
* type="object",
|
|
|
|
* @OA\Property(property="num_days", type="integer", example="1", description="The payment term length in days"),
|
|
|
|
* @OA\Property(property="name", type="string", example="NET 1", description="The payment term length in string format"),
|
|
|
|
* @OA\Property(property="created_at", type="number", format="integer", example="134341234234", description="Timestamp"),
|
|
|
|
* @OA\Property(property="updated_at", type="number", format="integer", example="134341234234", description="Timestamp"),
|
|
|
|
* @OA\Property(property="archived_at", type="number", format="integer", example="134341234234", description="Timestamp"),
|
|
|
|
* )
|
|
|
|
*/
|