-
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@0bd17562
- Loading branch information
Phrase
committed
Apr 17, 2024
1 parent
0975410
commit 0e0bb07
Showing
26 changed files
with
2,617 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,33 @@ | ||
# Phrase::RepoSync | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**id** | **String** | | [optional] | ||
**project** | [**ProjectShort**](ProjectShort.md) | | [optional] | ||
**provider** | **String** | | [optional] | ||
**enabled** | **Boolean** | | [optional] | ||
**auto_import** | **Boolean** | | [optional] | ||
**repo_name** | **String** | | [optional] | ||
**created_at** | **Time** | | [optional] | ||
**last_import_at** | **Time** | | [optional] | ||
**last_export_at** | **Time** | | [optional] | ||
|
||
## Code Sample | ||
|
||
```ruby | ||
require 'Phrase' | ||
|
||
instance = Phrase::RepoSync.new(id: null, | ||
project: null, | ||
provider: null, | ||
enabled: null, | ||
auto_import: null, | ||
repo_name: null, | ||
created_at: null, | ||
last_import_at: null, | ||
last_export_at: 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,27 @@ | ||
# Phrase::RepoSyncEvent | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**event_type** | **String** | | [optional] | ||
**created_at** | **Time** | | [optional] | ||
**status** | **String** | | [optional] | ||
**pull_request_url** | **String** | URL of the pull request created on export | [optional] | ||
**auto_import** | **Boolean** | Whether the import was triggered by the repo push event | [optional] | ||
**errors** | [**Array<RepoSyncEventErrorsInner>**](RepoSyncEventErrorsInner.md) | List of error messages, in case of failure | [optional] | ||
|
||
## Code Sample | ||
|
||
```ruby | ||
require 'Phrase' | ||
|
||
instance = Phrase::RepoSyncEvent.new(event_type: null, | ||
created_at: null, | ||
status: null, | ||
pull_request_url: null, | ||
auto_import: null, | ||
errors: 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,16 @@ | ||
# Phrase::RepoSyncEventErrorsInner | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
|
||
## Code Sample | ||
|
||
```ruby | ||
require 'Phrase' | ||
|
||
instance = Phrase::RepoSyncEventErrorsInner.new() | ||
``` | ||
|
||
|
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::RepoSyncExport | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**message** | **String** | | [optional] | ||
|
||
## Code Sample | ||
|
||
```ruby | ||
require 'Phrase' | ||
|
||
instance = Phrase::RepoSyncExport.new(message: Export started) | ||
``` | ||
|
||
|
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::RepoSyncImport | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**message** | **String** | | [optional] | ||
|
||
## Code Sample | ||
|
||
```ruby | ||
require 'Phrase' | ||
|
||
instance = Phrase::RepoSyncImport.new(message: Import started) | ||
``` | ||
|
||
|
Oops, something went wrong.