-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploying from phrase/openapi@4935dac5
- Loading branch information
Phrase
committed
Apr 2, 2024
1 parent
3b79a85
commit 54addfa
Showing
23 changed files
with
1,799 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Phrase::KeyLink | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**created_at** | **Time** | The timestamp when the link was created. | | ||
**updated_at** | **Time** | The timestamp when the link was last updated. | | ||
**created_by** | [**UserPreview**](UserPreview.md) | | | ||
**updated_by** | [**UserPreview**](UserPreview.md) | | | ||
**account** | [**Account**](Account.md) | | | ||
**parent** | [**KeyPreview**](KeyPreview.md) | | | ||
**children** | [**Array<KeyPreview>**](KeyPreview.md) | The child translation keys linked to the parent. | | ||
|
||
## Code Sample | ||
|
||
```ruby | ||
require 'Phrase' | ||
|
||
instance = Phrase::KeyLink.new(created_at: null, | ||
updated_at: null, | ||
created_by: null, | ||
updated_by: null, | ||
account: null, | ||
parent: null, | ||
children: null) | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Phrase::KeyLinksBatchDestroyParameters | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**child_key_ids** | **Array<String>** | The IDs of the child keys to unlink from the parent key. | | ||
|
||
## Code Sample | ||
|
||
```ruby | ||
require 'Phrase' | ||
|
||
instance = Phrase::KeyLinksBatchDestroyParameters.new(child_key_ids: ["child_key_id1","child_key_id2"]) | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Phrase::KeyLinksCreateParameters | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**child_key_ids** | **Array<String>** | The IDs of the child keys to link to the parent key. Can be left empty, to only mark the given translation-key as parent | | ||
|
||
## Code Sample | ||
|
||
```ruby | ||
require 'Phrase' | ||
|
||
instance = Phrase::KeyLinksCreateParameters.new(child_key_ids: ["child_key_id1","child_key_id2"]) | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Phrase::KeyLinksIndex400Response | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**message** | **String** | | [optional] | ||
|
||
## Code Sample | ||
|
||
```ruby | ||
require 'Phrase' | ||
|
||
instance = Phrase::KeyLinksIndex400Response.new(message: null) | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.