-
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@ce2ed948
- Loading branch information
Phrase
committed
Jan 2, 2024
1 parent
d46117b
commit 3498464
Showing
17 changed files
with
703 additions
and
82 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,25 @@ | ||
# Phrase::CustomMetadataPropertiesCreateParameters | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**name** | **String** | name of the property | | ||
**data_type** | [**CustomMetadataDataType**](CustomMetadataDataType.md) | | | ||
**project_ids** | **Array<String>** | ids of projects that the property belongs to | [optional] | ||
**description** | **String** | description of property | [optional] | ||
**value_options** | **Array<String>** | value options of property (only applies to single or multi select properties) | [optional] | ||
|
||
## Code Sample | ||
|
||
```ruby | ||
require 'Phrase' | ||
|
||
instance = Phrase::CustomMetadataPropertiesCreateParameters.new(name: Fruit, | ||
data_type: null, | ||
project_ids: ["abcd1234cdef1234abcd1234cdef1234","abcd1234cdef1234abcd1234cdef4321"], | ||
description: A healthy snack for all ages, | ||
value_options: ["Apple","Banana","Coconut"]) | ||
``` | ||
|
||
|
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,23 @@ | ||
# Phrase::CustomMetadataPropertiesUpdateParameters | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**name** | **String** | name of the property | [optional] | ||
**project_ids** | **Array<String>** | ids of projects that the property belongs to | [optional] | ||
**description** | **String** | description of property | [optional] | ||
**value_options** | **Array<String>** | value options of property (only applies to single or multi select properties) | [optional] | ||
|
||
## Code Sample | ||
|
||
```ruby | ||
require 'Phrase' | ||
|
||
instance = Phrase::CustomMetadataPropertiesUpdateParameters.new(name: Fruit, | ||
project_ids: ["abcd1234cdef1234abcd1234cdef1234","abcd1234cdef1234abcd1234cdef4321"], | ||
description: A healthy snack for all ages, | ||
value_options: ["Apple","Banana","Coconut"]) | ||
``` | ||
|
||
|
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
Oops, something went wrong.