Skip to content

Commit 2f9108c

Browse files
zacmostmoskovitch
authored and
tmoskovitch
committed
initial
1 parent fb5ffd3 commit 2f9108c

File tree

616 files changed

+97570
-5
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

616 files changed

+97570
-5
lines changed

.gitignore

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
*.class
2+
3+
public/
4+
!**/src/main/**
5+
!**/src/test/**
6+
.idea/
7+
.DS_Store
8+
.vscode/
9+
10+
# Mobile Tools for Java (J2ME)
11+
.mtj.tmp/
12+
13+
# Package Files #
14+
*.war
15+
*.ear
16+
17+
# exclude jar for gradle wrapper
18+
!gradle/wrapper/*.jar
19+
20+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
21+
hs_err_pid*
22+
23+
# build files
24+
**/target
25+
target
26+
.gradle
27+
build
28+
29+

README.md

+471-5
Large diffs are not rendered by default.

docs/AddOrDeleteRulesRequest.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
3+
# AddOrDeleteRulesRequest
4+
5+
6+
## Properties
7+
8+
Name | Type | Description | Notes
9+
------------ | ------------- | ------------- | -------------
10+
**add** | [**List<RuleNoId>**](RuleNoId.md) | |
11+
**delete** | [**DeleteRulesRequestDelete**](DeleteRulesRequestDelete.md) | |
12+
13+
14+

docs/AddOrDeleteRulesResponse.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
3+
# AddOrDeleteRulesResponse
4+
5+
A response from modifying user-specified stream filtering rules.
6+
7+
## Properties
8+
9+
Name | Type | Description | Notes
10+
------------ | ------------- | ------------- | -------------
11+
**data** | [**List<Rule>**](Rule.md) | All user-specified stream filtering rules that were created. | [optional]
12+
**meta** | [**RulesResponseMetadata**](RulesResponseMetadata.md) | |
13+
**errors** | [**List<Problem>**](Problem.md) | | [optional]
14+
15+
16+

docs/AddRulesRequest.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
3+
# AddRulesRequest
4+
5+
A request to add a user-specified stream filtering rule.
6+
7+
## Properties
8+
9+
Name | Type | Description | Notes
10+
------------ | ------------- | ------------- | -------------
11+
**add** | [**List<RuleNoId>**](RuleNoId.md) | |
12+
13+
14+

docs/AnimatedGif.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
3+
# AnimatedGif
4+
5+
6+
## Properties
7+
8+
Name | Type | Description | Notes
9+
------------ | ------------- | ------------- | -------------
10+
**previewImageUrl** | **URI** | | [optional]
11+
12+
13+

docs/AnimatedGifAllOf.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
3+
# AnimatedGifAllOf
4+
5+
6+
## Properties
7+
8+
Name | Type | Description | Notes
9+
------------ | ------------- | ------------- | -------------
10+
**previewImageUrl** | **URI** | | [optional]
11+
12+
13+

docs/CashtagEntity.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
3+
# CashtagEntity
4+
5+
6+
## Properties
7+
8+
Name | Type | Description | Notes
9+
------------ | ------------- | ------------- | -------------
10+
**start** | **Integer** | Index (zero-based) at which position this entity starts. The index is inclusive. |
11+
**end** | **Integer** | Index (zero-based) at which position this entity ends. The index is exclusive. |
12+
**tag** | **String** | |
13+
14+
15+

docs/CashtagFields.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
3+
# CashtagFields
4+
5+
Represent the portion of text recognized as a Cashtag, and its start and end position within the text.
6+
7+
## Properties
8+
9+
Name | Type | Description | Notes
10+
------------ | ------------- | ------------- | -------------
11+
**tag** | **String** | |
12+
13+
14+

docs/ClientDisconnectedProblem.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
3+
# ClientDisconnectedProblem
4+
5+
Your client has gone away.
6+
7+
## Properties
8+
9+
Name | Type | Description | Notes
10+
------------ | ------------- | ------------- | -------------
11+
12+
13+

docs/ClientForbiddenProblem.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
3+
# ClientForbiddenProblem
4+
5+
A problem that indicates your client is forbidden from making this request.
6+
7+
## Properties
8+
9+
Name | Type | Description | Notes
10+
------------ | ------------- | ------------- | -------------
11+
**reason** | [**ReasonEnum**](#ReasonEnum) | | [optional]
12+
**registrationUrl** | **URI** | | [optional]
13+
14+
15+
16+
## Enum: ReasonEnum
17+
18+
Name | Value
19+
---- | -----
20+
OFFICIAL_CLIENT_FORBIDDEN | "official-client-forbidden"
21+
CLIENT_NOT_ENROLLED | "client-not-enrolled"
22+
23+
24+

docs/ClientForbiddenProblemAllOf.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
3+
# ClientForbiddenProblemAllOf
4+
5+
6+
## Properties
7+
8+
Name | Type | Description | Notes
9+
------------ | ------------- | ------------- | -------------
10+
**reason** | [**ReasonEnum**](#ReasonEnum) | | [optional]
11+
**registrationUrl** | **URI** | | [optional]
12+
13+
14+
15+
## Enum: ReasonEnum
16+
17+
Name | Value
18+
---- | -----
19+
OFFICIAL_CLIENT_FORBIDDEN | "official-client-forbidden"
20+
CLIENT_NOT_ENROLLED | "client-not-enrolled"
21+
22+
23+

0 commit comments

Comments
 (0)