Skip to content

Commit a49e7a1

Browse files
author
devexperience
committed
Generated version 1.6.0
This commit was automatically created by a GitHub Action to generate version 1.6.0 of this library.
1 parent 559c649 commit a49e7a1

6 files changed

Lines changed: 48 additions & 24 deletions

File tree

api_mx_platform.go

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

configuration.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/AccountResponse.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ Name | Type | Description | Notes
108108
**PaymentDueAtSetBy** | Pointer to **NullableInt32** | | [optional]
109109
**PayoffBalance** | Pointer to **NullableFloat32** | | [optional]
110110
**PayoffBalanceSetBy** | Pointer to **NullableInt32** | | [optional]
111-
**PremiumAmount** | Pointer to **NullableString** | | [optional]
112-
**PropertyType** | Pointer to **NullableInt32** | | [optional]
111+
**PremiumAmount** | Pointer to **NullableFloat32** | | [optional]
112+
**PropertyType** | Pointer to **NullableString** | | [optional]
113113
**RoutingNumber** | Pointer to **NullableString** | | [optional]
114114
**StartedOn** | Pointer to **NullableString** | | [optional]
115115
**StartedOnSetBy** | Pointer to **NullableInt32** | | [optional]
@@ -3779,20 +3779,20 @@ HasPayoffBalanceSetBy returns a boolean if a field has been set.
37793779
UnsetPayoffBalanceSetBy ensures that no value is present for PayoffBalanceSetBy, not even an explicit nil
37803780
### GetPremiumAmount
37813781

3782-
`func (o *AccountResponse) GetPremiumAmount() string`
3782+
`func (o *AccountResponse) GetPremiumAmount() float32`
37833783

37843784
GetPremiumAmount returns the PremiumAmount field if non-nil, zero value otherwise.
37853785

37863786
### GetPremiumAmountOk
37873787

3788-
`func (o *AccountResponse) GetPremiumAmountOk() (*string, bool)`
3788+
`func (o *AccountResponse) GetPremiumAmountOk() (*float32, bool)`
37893789

37903790
GetPremiumAmountOk returns a tuple with the PremiumAmount field if it's non-nil, zero value otherwise
37913791
and a boolean to check if the value has been set.
37923792

37933793
### SetPremiumAmount
37943794

3795-
`func (o *AccountResponse) SetPremiumAmount(v string)`
3795+
`func (o *AccountResponse) SetPremiumAmount(v float32)`
37963796

37973797
SetPremiumAmount sets PremiumAmount field to given value.
37983798

@@ -3814,20 +3814,20 @@ HasPremiumAmount returns a boolean if a field has been set.
38143814
UnsetPremiumAmount ensures that no value is present for PremiumAmount, not even an explicit nil
38153815
### GetPropertyType
38163816

3817-
`func (o *AccountResponse) GetPropertyType() int32`
3817+
`func (o *AccountResponse) GetPropertyType() string`
38183818

38193819
GetPropertyType returns the PropertyType field if non-nil, zero value otherwise.
38203820

38213821
### GetPropertyTypeOk
38223822

3823-
`func (o *AccountResponse) GetPropertyTypeOk() (*int32, bool)`
3823+
`func (o *AccountResponse) GetPropertyTypeOk() (*string, bool)`
38243824

38253825
GetPropertyTypeOk returns a tuple with the PropertyType field if it's non-nil, zero value otherwise
38263826
and a boolean to check if the value has been set.
38273827

38283828
### SetPropertyType
38293829

3830-
`func (o *AccountResponse) SetPropertyType(v int32)`
3830+
`func (o *AccountResponse) SetPropertyType(v string)`
38313831

38323832
SetPropertyType sets PropertyType field to given value.
38333833

docs/MxPlatformAPI.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Method | HTTP request | Description
116116

117117
## AggregateMember
118118

119-
> MemberResponseBody AggregateMember(ctx, memberGuid, userGuid).Execute()
119+
> MemberResponseBody AggregateMember(ctx, memberGuid, userGuid).IncludeHoldings(includeHoldings).IncludeTransactions(includeTransactions).Execute()
120120
121121
Aggregate member
122122

@@ -137,10 +137,12 @@ import (
137137
func main() {
138138
memberGuid := "MBR-7c6f361b-e582-15b6-60c0-358f12466b4b" // string | The unique id for a `member`.
139139
userGuid := "USR-fa7537f3-48aa-a683-a02a-b18940482f54" // string | The unique id for a `user`.
140+
includeHoldings := false // bool | When set to `false`, the aggregation will not gather holdings data. Defaults to `true`. (optional)
141+
includeTransactions := false // bool | When set to `false`, the aggregation will not gather transactions data. Defaults to `true`. (optional)
140142

141143
configuration := openapiclient.NewConfiguration()
142144
apiClient := openapiclient.NewAPIClient(configuration)
143-
resp, r, err := apiClient.MxPlatformAPI.AggregateMember(context.Background(), memberGuid, userGuid).Execute()
145+
resp, r, err := apiClient.MxPlatformAPI.AggregateMember(context.Background(), memberGuid, userGuid).IncludeHoldings(includeHoldings).IncludeTransactions(includeTransactions).Execute()
144146
if err != nil {
145147
fmt.Fprintf(os.Stderr, "Error when calling `MxPlatformAPI.AggregateMember``: %v\n", err)
146148
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
@@ -168,6 +170,8 @@ Name | Type | Description | Notes
168170
------------- | ------------- | ------------- | -------------
169171

170172

173+
**includeHoldings** | **bool** | When set to `false`, the aggregation will not gather holdings data. Defaults to `true`. |
174+
**includeTransactions** | **bool** | When set to `false`, the aggregation will not gather transactions data. Defaults to `true`. |
171175

172176
### Return type
173177

model_account_response.go

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

openapi/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
gitRepoId: mx-platform-go
33
gitUserId: mxenabled
44
packageName: mxplatformgo
5-
packageVersion: 1.5.0
5+
packageVersion: 1.6.0

0 commit comments

Comments
 (0)