Skip to content

Commit

Permalink
Generated version 0.41.0
Browse files Browse the repository at this point in the history
This commit was automatically created by a GitHub Action to generate version 0.41.0 of this library.
  • Loading branch information
devexperience committed Sep 4, 2024
1 parent 2c853fc commit 6364f2f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions docs/MxPlatformApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -6885,7 +6885,7 @@ end
Update account by member

This endpoint allows you to update certain attributes of an `account` resource.
This endpoint allows you to update certain attributes of an `account` resource, including manual accounts. For manual accounts, you can update every field listed. For aggregated accounts, you can only update `is_business`, `is_hidden` and `metadata`.

### Examples

Expand All @@ -6903,7 +6903,7 @@ api_instance = MxPlatformRuby::MxPlatformApi.new
account_guid = 'ACT-06d7f44b-caae-0f6e-1384-01f52e75dcb1' # String | The unique id for an `account`.
member_guid = 'MBR-7c6f361b-e582-15b6-60c0-358f12466b4b' # String | The unique id for a `member`.
user_guid = 'USR-fa7537f3-48aa-a683-a02a-b18940482f54' # String | The unique id for a `user`.
account_update_request_body = MxPlatformRuby::AccountUpdateRequestBody.new # AccountUpdateRequestBody | Account object to be created with optional parameters (is_hidden)
account_update_request_body = MxPlatformRuby::AccountUpdateRequestBody.new # AccountUpdateRequestBody |

begin
# Update account by member
Expand Down Expand Up @@ -6939,7 +6939,7 @@ end
| **account_guid** | **String** | The unique id for an `account`. | |
| **member_guid** | **String** | The unique id for a `member`. | |
| **user_guid** | **String** | The unique id for a `user`. | |
| **account_update_request_body** | [**AccountUpdateRequestBody**](AccountUpdateRequestBody.md) | Account object to be created with optional parameters (is_hidden) | |
| **account_update_request_body** | [**AccountUpdateRequestBody**](AccountUpdateRequestBody.md) | | |

### Return type

Expand Down
8 changes: 4 additions & 4 deletions lib/mx-platform-ruby/api/mx_platform_api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6542,11 +6542,11 @@ def resume_aggregation_with_http_info(member_guid, user_guid, member_resume_requ
end

# Update account by member
# This endpoint allows you to update certain attributes of an `account` resource.
# This endpoint allows you to update certain attributes of an `account` resource, including manual accounts. For manual accounts, you can update every field listed. For aggregated accounts, you can only update `is_business`, `is_hidden` and `metadata`.
# @param account_guid [String] The unique id for an `account`.
# @param member_guid [String] The unique id for a `member`.
# @param user_guid [String] The unique id for a `user`.
# @param account_update_request_body [AccountUpdateRequestBody] Account object to be created with optional parameters (is_hidden)
# @param account_update_request_body [AccountUpdateRequestBody]
# @param [Hash] opts the optional parameters
# @return [AccountResponseBody]
def update_account_by_member(account_guid, member_guid, user_guid, account_update_request_body, opts = {})
Expand All @@ -6555,11 +6555,11 @@ def update_account_by_member(account_guid, member_guid, user_guid, account_updat
end

# Update account by member
# This endpoint allows you to update certain attributes of an `account` resource.
# This endpoint allows you to update certain attributes of an `account` resource, including manual accounts. For manual accounts, you can update every field listed. For aggregated accounts, you can only update `is_business`, `is_hidden` and `metadata`.
# @param account_guid [String] The unique id for an `account`.
# @param member_guid [String] The unique id for a `member`.
# @param user_guid [String] The unique id for a `user`.
# @param account_update_request_body [AccountUpdateRequestBody] Account object to be created with optional parameters (is_hidden)
# @param account_update_request_body [AccountUpdateRequestBody]
# @param [Hash] opts the optional parameters
# @return [Array<(AccountResponseBody, Integer, Hash)>] AccountResponseBody data, response status code and response headers
def update_account_by_member_with_http_info(account_guid, member_guid, user_guid, account_update_request_body, opts = {})
Expand Down
2 changes: 1 addition & 1 deletion lib/mx-platform-ruby/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
=end

module MxPlatformRuby
VERSION = '0.40.0'
VERSION = '0.41.0'
end
2 changes: 1 addition & 1 deletion openapi/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ gemHomepage: https://github.com/mxenabled/mx-platform-ruby
gemLicense: MIT
gemName: mx-platform-ruby
gemRequiredRubyVersion: ">= 2.6"
gemVersion: 0.40.0
gemVersion: 0.41.0
library: faraday
moduleName: MxPlatformRuby
4 changes: 2 additions & 2 deletions spec/api/mx_platform_api_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1295,11 +1295,11 @@

# unit tests for update_account_by_member
# Update account by member
# This endpoint allows you to update certain attributes of an &#x60;account&#x60; resource.
# This endpoint allows you to update certain attributes of an &#x60;account&#x60; resource, including manual accounts. For manual accounts, you can update every field listed. For aggregated accounts, you can only update &#x60;is_business&#x60;, &#x60;is_hidden&#x60; and &#x60;metadata&#x60;.
# @param account_guid The unique id for an &#x60;account&#x60;.
# @param member_guid The unique id for a &#x60;member&#x60;.
# @param user_guid The unique id for a &#x60;user&#x60;.
# @param account_update_request_body Account object to be created with optional parameters (is_hidden)
# @param account_update_request_body
# @param [Hash] opts the optional parameters
# @return [AccountResponseBody]
describe 'update_account_by_member test' do
Expand Down

0 comments on commit 6364f2f

Please sign in to comment.