-
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@8cb91dcc
- Loading branch information
Phrase
committed
Jun 12, 2024
1 parent
2928519
commit 6dcf1b8
Showing
20 changed files
with
1,995 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
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::ReleaseCreateParameters1 | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**cron_schedule** | **String** | Cron schedule for the scheduler. Read more about the format of this field at https://en.wikipedia.org/wiki/Cron | [optional] | ||
**time_zone** | **String** | Time zone for the scheduler | [optional] | ||
**locale_ids** | **Array<String>** | List of locale ids that will be included in the release. | [optional] | ||
**tags** | **Array<String>** | Only include tagged keys in the release. For a key to be included it must be tagged with all tags provided | [optional] | ||
**branch** | **String** | Branch used for release | [optional] | ||
**app_min_version** | **String** | The created releases will be available only for apps with version greater or equal to this value | [optional] | ||
**app_max_version** | **String** | The created releases will be available only for apps with version less or equal to this value | [optional] | ||
|
||
## Code Sample | ||
|
||
```ruby | ||
require 'Phrase' | ||
|
||
instance = Phrase::ReleaseCreateParameters1.new(cron_schedule: 15 18 * * 1,3, | ||
time_zone: Europe/Berlin, | ||
locale_ids: ["abcd1234cdef1234abcd1234cdef1234","fff565db236400772368235db2c6117e"], | ||
tags: ["android","feature1"], | ||
branch: my-feature-branch, | ||
app_min_version: 1.0.0, | ||
app_max_version: 2.0.0) | ||
``` | ||
|
||
|
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,37 @@ | ||
# Phrase::ReleaseTrigger | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**id** | **String** | | [optional] | ||
**branch** | **String** | | [optional] | ||
**cron_schedule** | **String** | Cron schedule for the scheduler. Read more about the format of this field at https://en.wikipedia.org/wiki/Cron | [optional] | ||
**time_zone** | **String** | Time zone for the scheduler | [optional] | ||
**next_run_at** | **Time** | The next time a release will be created for this trigger | [optional] | ||
**app_min_version** | **String** | | [optional] | ||
**app_max_version** | **String** | | [optional] | ||
**locales** | [**Array<LocalePreview>**](LocalePreview.md) | | [optional] | ||
**tags** | **Array<String>** | | [optional] | ||
**created_at** | **Time** | | [optional] | ||
**updated_at** | **Time** | | [optional] | ||
|
||
## Code Sample | ||
|
||
```ruby | ||
require 'Phrase' | ||
|
||
instance = Phrase::ReleaseTrigger.new(id: null, | ||
branch: null, | ||
cron_schedule: null, | ||
time_zone: null, | ||
next_run_at: null, | ||
app_min_version: null, | ||
app_max_version: null, | ||
locales: null, | ||
tags: null, | ||
created_at: null, | ||
updated_at: null) | ||
``` | ||
|
||
|
Oops, something went wrong.