Commit 0ff113f5 by Murlidhar Fichadia

Regenerated sdk after enum fix in open API docs

parent 2df3585a
File added
File added
......@@ -313,7 +313,15 @@ class OrderLine implements ModelInterface, ArrayAccess, \JsonSerializable
return self::$openAPIModelName;
}
public const TYPE_PHYSICAL_DISCOUNT_SHIPPING_FEE_SALES_TAX_STORE_CREDIT_GIFT_CARD_DIGITAL_SURCHARGE_RETURN_FEE = 'physical|discount|shipping_fee|sales_tax|store_credit|gift_card|digital|surcharge|return_fee';
public const TYPE_PHYSICAL = 'physical';
public const TYPE_DISCOUNT = 'discount';
public const TYPE_SHIPPING_FEE = 'shipping_fee';
public const TYPE_SALES_TAX = 'sales_tax';
public const TYPE_DIGITAL = 'digital';
public const TYPE_GIFT_CARD = 'gift_card';
public const TYPE_STORE_CREDIT = 'store_credit';
public const TYPE_SURCHARGE = 'surcharge';
public const TYPE_RETURN_FEE = 'return_fee';
/**
* Gets allowable values of the enum
......@@ -323,7 +331,15 @@ class OrderLine implements ModelInterface, ArrayAccess, \JsonSerializable
public function getTypeAllowableValues()
{
return [
self::TYPE_PHYSICAL_DISCOUNT_SHIPPING_FEE_SALES_TAX_STORE_CREDIT_GIFT_CARD_DIGITAL_SURCHARGE_RETURN_FEE,
self::TYPE_PHYSICAL,
self::TYPE_DISCOUNT,
self::TYPE_SHIPPING_FEE,
self::TYPE_SALES_TAX,
self::TYPE_DIGITAL,
self::TYPE_GIFT_CARD,
self::TYPE_STORE_CREDIT,
self::TYPE_SURCHARGE,
self::TYPE_RETURN_FEE,
];
}
......
File added
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment