Skip to content

Commit 6364f2f

Browse files
author
devexperience
committed
Generated version 0.41.0
This commit was automatically created by a GitHub Action to generate version 0.41.0 of this library.
1 parent 2c853fc commit 6364f2f

5 files changed

Lines changed: 11 additions & 11 deletions

File tree

docs/MxPlatformApi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6885,7 +6885,7 @@ end
68856885
68866886
Update account by member
68876887

6888-
This endpoint allows you to update certain attributes of an `account` resource.
6888+
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`.
68896889

68906890
### Examples
68916891

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

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

69446944
### Return type
69456945

lib/mx-platform-ruby/api/mx_platform_api.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6542,11 +6542,11 @@ def resume_aggregation_with_http_info(member_guid, user_guid, member_resume_requ
65426542
end
65436543

65446544
# Update account by member
6545-
# This endpoint allows you to update certain attributes of an `account` resource.
6545+
# 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`.
65466546
# @param account_guid [String] The unique id for an `account`.
65476547
# @param member_guid [String] The unique id for a `member`.
65486548
# @param user_guid [String] The unique id for a `user`.
6549-
# @param account_update_request_body [AccountUpdateRequestBody] Account object to be created with optional parameters (is_hidden)
6549+
# @param account_update_request_body [AccountUpdateRequestBody]
65506550
# @param [Hash] opts the optional parameters
65516551
# @return [AccountResponseBody]
65526552
def update_account_by_member(account_guid, member_guid, user_guid, account_update_request_body, opts = {})
@@ -6555,11 +6555,11 @@ def update_account_by_member(account_guid, member_guid, user_guid, account_updat
65556555
end
65566556

65576557
# Update account by member
6558-
# This endpoint allows you to update certain attributes of an `account` resource.
6558+
# 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`.
65596559
# @param account_guid [String] The unique id for an `account`.
65606560
# @param member_guid [String] The unique id for a `member`.
65616561
# @param user_guid [String] The unique id for a `user`.
6562-
# @param account_update_request_body [AccountUpdateRequestBody] Account object to be created with optional parameters (is_hidden)
6562+
# @param account_update_request_body [AccountUpdateRequestBody]
65636563
# @param [Hash] opts the optional parameters
65646564
# @return [Array<(AccountResponseBody, Integer, Hash)>] AccountResponseBody data, response status code and response headers
65656565
def update_account_by_member_with_http_info(account_guid, member_guid, user_guid, account_update_request_body, opts = {})

lib/mx-platform-ruby/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
=end
1212

1313
module MxPlatformRuby
14-
VERSION = '0.40.0'
14+
VERSION = '0.41.0'
1515
end

openapi/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ gemHomepage: https://github.com/mxenabled/mx-platform-ruby
66
gemLicense: MIT
77
gemName: mx-platform-ruby
88
gemRequiredRubyVersion: ">= 2.6"
9-
gemVersion: 0.40.0
9+
gemVersion: 0.41.0
1010
library: faraday
1111
moduleName: MxPlatformRuby

spec/api/mx_platform_api_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1295,11 +1295,11 @@
12951295

12961296
# unit tests for update_account_by_member
12971297
# Update account by member
1298-
# This endpoint allows you to update certain attributes of an &#x60;account&#x60; resource.
1298+
# 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;.
12991299
# @param account_guid The unique id for an &#x60;account&#x60;.
13001300
# @param member_guid The unique id for a &#x60;member&#x60;.
13011301
# @param user_guid The unique id for a &#x60;user&#x60;.
1302-
# @param account_update_request_body Account object to be created with optional parameters (is_hidden)
1302+
# @param account_update_request_body
13031303
# @param [Hash] opts the optional parameters
13041304
# @return [AccountResponseBody]
13051305
describe 'update_account_by_member test' do

0 commit comments

Comments
 (0)