Skip to content

Commit

Permalink
Merge pull request #11 from mulesoft-anypoint/dev
Browse files Browse the repository at this point in the history
Connected App module
  • Loading branch information
soufi authored Jun 10, 2024
2 parents 78db926 + 0b00601 commit 08fc33f
Show file tree
Hide file tree
Showing 5 changed files with 131 additions and 0 deletions.
5 changes: 5 additions & 0 deletions connected_app/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -498,6 +498,11 @@ components:
type: object
connectedAppRespExt_allOf:
properties:
org_id:
description: the organization where the connected app is created
example: bb1f55d6-563z-4f60-845c-207286484re1
title: org_id
type: string
client_id:
description: connected app client id
example: 7d72415f862044199be3b739848e6adb
Expand Down
26 changes: 26 additions & 0 deletions connected_app/docs/ConnectedAppRespExt.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Name | Type | Description | Notes
**PublicKeys** | Pointer to **[]string** | Application public key (PEM format). Used to validate JWT authorization grants. | [optional]
**ClientUri** | Pointer to **string** | | [optional]
**Audience** | Pointer to **string** | | [optional]
**OrgId** | Pointer to **string** | the organization where the connected app is created | [optional]
**ClientId** | Pointer to **string** | connected app client id | [optional]
**ClientSecret** | Pointer to **string** | connected app generated secret | [optional]
**OwnerOrgId** | Pointer to **string** | connected app owner organization id | [optional]
Expand Down Expand Up @@ -214,6 +215,31 @@ SetAudience sets Audience field to given value.

HasAudience returns a boolean if a field has been set.

### GetOrgId

`func (o *ConnectedAppRespExt) GetOrgId() string`

GetOrgId returns the OrgId field if non-nil, zero value otherwise.

### GetOrgIdOk

`func (o *ConnectedAppRespExt) GetOrgIdOk() (*string, bool)`

GetOrgIdOk returns a tuple with the OrgId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetOrgId

`func (o *ConnectedAppRespExt) SetOrgId(v string)`

SetOrgId sets OrgId field to given value.

### HasOrgId

`func (o *ConnectedAppRespExt) HasOrgId() bool`

HasOrgId returns a boolean if a field has been set.

### GetClientId

`func (o *ConnectedAppRespExt) GetClientId() string`
Expand Down
26 changes: 26 additions & 0 deletions connected_app/docs/ConnectedAppRespExtAllOf.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**OrgId** | Pointer to **string** | the organization where the connected app is created | [optional]
**ClientId** | Pointer to **string** | connected app client id | [optional]
**ClientSecret** | Pointer to **string** | connected app generated secret | [optional]
**OwnerOrgId** | Pointer to **string** | connected app owner organization id | [optional]
Expand Down Expand Up @@ -32,6 +33,31 @@ NewConnectedAppRespExtAllOfWithDefaults instantiates a new ConnectedAppRespExtAl
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set

### GetOrgId

`func (o *ConnectedAppRespExtAllOf) GetOrgId() string`

GetOrgId returns the OrgId field if non-nil, zero value otherwise.

### GetOrgIdOk

`func (o *ConnectedAppRespExtAllOf) GetOrgIdOk() (*string, bool)`

GetOrgIdOk returns a tuple with the OrgId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetOrgId

`func (o *ConnectedAppRespExtAllOf) SetOrgId(v string)`

SetOrgId sets OrgId field to given value.

### HasOrgId

`func (o *ConnectedAppRespExtAllOf) HasOrgId() bool`

HasOrgId returns a boolean if a field has been set.

### GetClientId

`func (o *ConnectedAppRespExtAllOf) GetClientId() string`
Expand Down
37 changes: 37 additions & 0 deletions connected_app/model_connected_app_resp_ext.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

37 changes: 37 additions & 0 deletions connected_app/model_connected_app_resp_ext_all_of.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 08fc33f

Please sign in to comment.