-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #79 from mxenabled/openapi-generator-0.15.0
Generated version 0.15.0
- Loading branch information
Showing
31 changed files
with
2,538 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# MxPlatformRuby::AuthorizationCodeRequest | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| ---- | ---- | ----------- | ----- | | ||
| **scope** | **String** | | [optional] | | ||
|
||
## Example | ||
|
||
```ruby | ||
require 'mx-platform-ruby' | ||
|
||
instance = MxPlatformRuby::AuthorizationCodeRequest.new( | ||
scope: user-guid:USR-101ad774-288b-44ed-ad16-da87d522ea20 member-guid:MBR-54feffb9-8474-47bd-8442-de003910113a account-guid:ACT-32a64160-582a-4f00-ab34-5f49cc35ed35 read-protected | ||
) | ||
``` | ||
|
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,18 @@ | ||
# MxPlatformRuby::AuthorizationCodeRequestBody | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| ---- | ---- | ----------- | ----- | | ||
| **authorization_code** | [**AuthorizationCodeRequest**](AuthorizationCodeRequest.md) | | [optional] | | ||
|
||
## Example | ||
|
||
```ruby | ||
require 'mx-platform-ruby' | ||
|
||
instance = MxPlatformRuby::AuthorizationCodeRequestBody.new( | ||
authorization_code: 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,18 @@ | ||
# MxPlatformRuby::AuthorizationCodeResponse | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| ---- | ---- | ----------- | ----- | | ||
| **code** | **String** | | [optional] | | ||
|
||
## Example | ||
|
||
```ruby | ||
require 'mx-platform-ruby' | ||
|
||
instance = MxPlatformRuby::AuthorizationCodeResponse.new( | ||
code: 9nN-9D8_4Z3WYazx7-zXfmqsD3jwgL_2W927Sb3otI | ||
) | ||
``` | ||
|
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,18 @@ | ||
# MxPlatformRuby::AuthorizationCodeResponseBody | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| ---- | ---- | ----------- | ----- | | ||
| **authorization_code** | [**Array<AuthorizationCodeResponse>**](AuthorizationCodeResponse.md) | | [optional] | | ||
|
||
## Example | ||
|
||
```ruby | ||
require 'mx-platform-ruby' | ||
|
||
instance = MxPlatformRuby::AuthorizationCodeResponseBody.new( | ||
authorization_code: 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
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,22 @@ | ||
# MxPlatformRuby::PaymentProcessorAuthorizationCodeRequest | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| ---- | ---- | ----------- | ----- | | ||
| **account_guid** | **String** | | [optional] | | ||
| **member_guid** | **String** | | [optional] | | ||
| **user_guid** | **String** | | [optional] | | ||
|
||
## Example | ||
|
||
```ruby | ||
require 'mx-platform-ruby' | ||
|
||
instance = MxPlatformRuby::PaymentProcessorAuthorizationCodeRequest.new( | ||
account_guid: ACT-4d4c0068-33bc-4d06-bbd6-cd270fd0135c, | ||
member_guid: MBR-46637bc5-942d-4229-9370-ddd858bf805e, | ||
user_guid: USR-f12b1f5a-7cbe-467c-aa30-0a10d0b2f549 | ||
) | ||
``` | ||
|
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,18 @@ | ||
# MxPlatformRuby::PaymentProcessorAuthorizationCodeRequestBody | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| ---- | ---- | ----------- | ----- | | ||
| **payment_processor_authorization_code** | [**PaymentProcessorAuthorizationCodeRequest**](PaymentProcessorAuthorizationCodeRequest.md) | | [optional] | | ||
|
||
## Example | ||
|
||
```ruby | ||
require 'mx-platform-ruby' | ||
|
||
instance = MxPlatformRuby::PaymentProcessorAuthorizationCodeRequestBody.new( | ||
payment_processor_authorization_code: 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,18 @@ | ||
# MxPlatformRuby::PaymentProcessorAuthorizationCodeResponse | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| ---- | ---- | ----------- | ----- | | ||
| **authorization_code** | **String** | | [optional] | | ||
|
||
## Example | ||
|
||
```ruby | ||
require 'mx-platform-ruby' | ||
|
||
instance = MxPlatformRuby::PaymentProcessorAuthorizationCodeResponse.new( | ||
authorization_code: 9nN-9D8_4Z3WYazx7-zXfmqsD3jwgL_2W927Sb3otI | ||
) | ||
``` | ||
|
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,18 @@ | ||
# MxPlatformRuby::PaymentProcessorAuthorizationCodeResponseBody | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| ---- | ---- | ----------- | ----- | | ||
| **payment_processor_authorization_code** | [**PaymentProcessorAuthorizationCodeResponse**](PaymentProcessorAuthorizationCodeResponse.md) | | [optional] | | ||
|
||
## Example | ||
|
||
```ruby | ||
require 'mx-platform-ruby' | ||
|
||
instance = MxPlatformRuby::PaymentProcessorAuthorizationCodeResponseBody.new( | ||
payment_processor_authorization_code: null | ||
) | ||
``` | ||
|
Oops, something went wrong.