2019-10-07 06:57:14 +02:00
|
|
|
<?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"),
|
2019-10-17 10:26:46 +02:00
|
|
|
* @OA\Property(property="show_billing_address", type="boolean", example=true, description="______"),
|
2019-10-07 06:57:14 +02:00
|
|
|
* @OA\Property(property="show_shipping_address", type="boolean", example=true, description="______"),
|
2019-11-12 05:41:02 +01:00
|
|
|
* @OA\Property(property="config", type="string", example="dfadsfdsafsafd", description="The configuration map for the gateway"),
|
2019-10-07 06:57:14 +02:00
|
|
|
* @OA\Property(property="update_details", type="boolean", example=true, description="______"),
|
2019-11-12 05:41:02 +01:00
|
|
|
* @OA\Property(
|
2019-12-30 22:59:12 +01:00
|
|
|
* property="fees_and_limits",
|
2019-11-12 05:41:02 +01:00
|
|
|
* type="array",
|
|
|
|
* description="A mapped collection of the fees and limits for the configured gateway",
|
|
|
|
* @OA\Items(
|
|
|
|
* ref="#/components/schemas/FeesAndLimits",
|
|
|
|
* ),
|
|
|
|
* ),
|
2019-10-07 06:57:14 +02:00
|
|
|
* )
|
|
|
|
*/
|