-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMlegPriceEffectStrict.php
More file actions
59 lines (50 loc) · 1.12 KB
/
MlegPriceEffectStrict.php
File metadata and controls
59 lines (50 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
/**
* MlegPriceEffectStrict
*
* PHP version 7.4
*
* @category Class
* @package SnapTrade
* @author Konfig
* @link https://konfigthis.com
*/
/**
* SnapTrade
*
* Connect brokerage accounts to your app for live positions and trading
*
* The version of the OpenAPI document: 1.0.0
* Contact: api@snaptrade.com
* Generated by: https://konfigthis.com
*/
namespace SnapTrade\Model;
use \SnapTrade\ObjectSerializer;
/**
* MlegPriceEffectStrict Class Doc Comment
*
* @category Class
* @description The desired price_effect for `LIMIT` and `STOP_LOSS_LIMIT` orders. Values are `CREDIT`, `DEBIT`, `EVEN`
* @package SnapTrade
*/
class MlegPriceEffectStrict
{
/**
* Possible values of this enum
*/
public const CREDIT = 'CREDIT';
public const DEBIT = 'DEBIT';
public const EVEN = 'EVEN';
/**
* Gets allowable values of the enum
* @return string[]
*/
public static function getAllowableEnumValues()
{
return [
self::CREDIT,
self::DEBIT,
self::EVEN
];
}
}