You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -36,8 +41,13 @@ final class ExportListParams implements BaseModel
36
41
use SdkModel;
37
42
use SdkParams;
38
43
39
-
#[Optional]
40
-
public ?Category$category;
44
+
/**
45
+
* Filter Exports for those with the specified category.
46
+
*
47
+
* @var value-of<Category>|null $category
48
+
*/
49
+
#[Optional(enum: Category::class)]
50
+
public ?string$category;
41
51
42
52
#[Optional]
43
53
public ?CreatedAt$createdAt;
@@ -48,6 +58,12 @@ final class ExportListParams implements BaseModel
48
58
#[Optional]
49
59
public ?string$cursor;
50
60
61
+
#[Optional]
62
+
public ?Form1099Int$form1099Int;
63
+
64
+
#[Optional]
65
+
public ?Form1099Misc$form1099Misc;
66
+
51
67
/**
52
68
* Filter records to the one with the specified `idempotency_key` you chose for that object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about [idempotency](https://increase.com/documentation/idempotency-keys).
53
69
*/
@@ -73,14 +89,18 @@ public function __construct()
73
89
*
74
90
* You must use named parameters to construct any parameters with a default value.
* Filter records to the one with the specified `idempotency_key` you chose for that object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about [idempotency](https://increase.com/documentation/idempotency-keys).
* Filter Exports for those with the specified category.
14
9
*/
15
-
finalclassCategoryimplements BaseModel
10
+
enumCategory: string
16
11
{
17
-
/** @use SdkModel<CategoryShape> */
18
-
use SdkModel;
19
-
20
-
/**
21
-
* Filter Exports for those with the specified category or categories. For GET requests, this should be encoded as a comma-delimited string, such as `?in=one,two,three`.
22
-
*
23
-
* @var list<value-of<In>>|null $in
24
-
*/
25
-
#[Optional(list: In::class)]
26
-
public ?array$in;
27
-
28
-
publicfunction__construct()
29
-
{
30
-
$this->initialize();
31
-
}
32
-
33
-
/**
34
-
* Construct an instance from the required parameters.
35
-
*
36
-
* You must use named parameters to construct any parameters with a default value.
37
-
*
38
-
* @param list<In|value-of<In>>|null $in
39
-
*/
40
-
publicstaticfunctionwith(?array$in = null): self
41
-
{
42
-
$self = newself;
43
-
44
-
null !== $in && $self['in'] = $in;
45
-
46
-
return$self;
47
-
}
48
-
49
-
/**
50
-
* Filter Exports for those with the specified category or categories. For GET requests, this should be encoded as a comma-delimited string, such as `?in=one,two,three`.
0 commit comments