mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
a60613aa26
* update company settings and OpenAPI definitions * Fixes for tests * Add extra variables to company settings * Track signup platform when new account signup processed
28 lines
2.1 KiB
PHP
28 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* @OA\Schema(
|
|
* schema="CompanyGateway",
|
|
* type="object",
|
|
* @OA\Property(property="id", type="string", example="Opnel5aKBz", description="______"),
|
|
* @OA\Property(property="company_id", type="string", example="2", description="______"),
|
|
* @OA\Property(property="gateway_key", type="string", example="2", description="______"),
|
|
* @OA\Property(property="accepted_credit_cards", type="integer", example="32", description="Bitmask representation of cards"),
|
|
* @OA\Property(property="show_billing_address", type="boolean", example=true, description="______"),
|
|
* @OA\Property(property="show_shipping_address", type="boolean", example=true, description="______"),
|
|
* @OA\Property(property="update_details", type="boolean", example=true, description="______"),
|
|
* @OA\Property(property="adjust_fee_percent", type="boolean", example=true, description="______"),
|
|
* @OA\Property(property="config", type="string", example="2", description="______"),
|
|
* @OA\Property(property="priority", type="string", example="2", description="______"),
|
|
* @OA\Property(property="user_id", type="string", example="2", description="______"),
|
|
* @OA\Property(property="min_limit", type="string", example="2", description="______"),
|
|
* @OA\Property(property="max_limit", type="string", example="2", description="______"),
|
|
* @OA\Property(property="fee_amount", type="number", format="float", example="2.0", description="______"),
|
|
* @OA\Property(property="fee_percent", type="number", format="float", example="2.0", description="______"),
|
|
* @OA\Property(property="fee_tax_name1", type="string", example="2", description="______"),
|
|
* @OA\Property(property="fee_tax_name2", type="string", example="2", description="______"),
|
|
* @OA\Property(property="fee_tax_rate1", type="number", format="float", example="2.0", description="______"),
|
|
* @OA\Property(property="fee_tax_rate2", type="number", format="float", example="2.0", description="______"),
|
|
* @OA\Property(property="fee_cap", type="number", format="float", example="2.0", description="______"),
|
|
* )
|
|
*/
|
|
|