2019-10-06 13:58:11 +02:00
|
|
|
<?php
|
2020-10-10 14:07:52 +02:00
|
|
|
/**
|
2019-10-06 13:58:11 +02:00
|
|
|
* @OA\Schema(
|
|
|
|
* schema="Activity",
|
|
|
|
* type="object",
|
2022-08-11 02:47:34 +02:00
|
|
|
* @OA\Property(property="id", type="string", example="Opnel5aKBz", description="The id field of the activity"),
|
|
|
|
* @OA\Property(property="activity_type_id", type="string", example="Opnel5aKBz", description="The activity type id"),
|
|
|
|
* @OA\Property(property="client_id", type="string", example="Opnel5aKBz", description="The client hashed id"),
|
|
|
|
* @OA\Property(property="company_id", type="string", example="Opnel5aKBz", description="The company hashed id"),
|
|
|
|
* @OA\Property(property="user_id", type="string", example="Opnel5aKBz", description="The user hashed id"),
|
|
|
|
* @OA\Property(property="invoice_id", type="string", example="Opnel5aKBz", description="The invoice hashed id"),
|
|
|
|
* @OA\Property(property="payment_id", type="string", example="Opnel5aKBz", description="The payment hashed id"),
|
|
|
|
* @OA\Property(property="credit_id", type="string", example="Opnel5aKBz", description="The credit hashed id"),
|
|
|
|
* @OA\Property(property="updated_at", type="integer", example="343421434", description="Unixtimestamp the last time the record was updated"),
|
|
|
|
* @OA\Property(property="expense_id", type="string", example="Opnel5aKBz", description="The expense hashed id"),
|
|
|
|
* @OA\Property(property="is_system", type="boolean", example=true, description="Defines is the activity was performed by the system"),
|
|
|
|
* @OA\Property(property="contact_id", type="string", example="Opnel5aKBz", description="The contact hashed id"),
|
|
|
|
* @OA\Property(property="task_id", type="string", example="Opnel5aKBz", description="The task hashed id"),
|
|
|
|
* @OA\Property(property="notes", type="string", example="Opnel5aKBz", description="Activity Notes"),
|
|
|
|
* @OA\Property(property="token_id", type="string", example="Opnel5aKBz", description="The hashed ID of the token who performed the action"),
|
|
|
|
* @OA\Property(property="ip", type="string", example="192.168.1.252", description="The IP Address of the user who performed the action"),
|
2019-10-06 13:58:11 +02:00
|
|
|
* )
|
2019-12-30 22:59:12 +01:00
|
|
|
*/
|