-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Regenerate client from commit 78095ca of spec repo
- Loading branch information
ci.datadog-api-spec
committed
Jan 26, 2022
1 parent
780e2cb
commit 38feba0
Showing
36 changed files
with
820 additions
and
134 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
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
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
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,59 @@ | ||
# NullableRelationshipToUser | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| -------- | ------------------------------------------------------------------------------- | ----------- | ----- | | ||
| **Data** | [**NullableNullableRelationshipToUserData**](NullableRelationshipToUserData.md) | | | ||
|
||
## Methods | ||
|
||
### NewNullableRelationshipToUser | ||
|
||
`func NewNullableRelationshipToUser(data NullableNullableRelationshipToUserData) *NullableRelationshipToUser` | ||
|
||
NewNullableRelationshipToUser instantiates a new NullableRelationshipToUser object. | ||
This constructor will assign default values to properties that have it defined, | ||
and makes sure properties required by API are set, but the set of arguments | ||
will change when the set of required properties is changed. | ||
|
||
### NewNullableRelationshipToUserWithDefaults | ||
|
||
`func NewNullableRelationshipToUserWithDefaults() *NullableRelationshipToUser` | ||
|
||
NewNullableRelationshipToUserWithDefaults instantiates a new NullableRelationshipToUser object. | ||
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. | ||
|
||
### GetData | ||
|
||
`func (o *NullableRelationshipToUser) GetData() NullableRelationshipToUserData` | ||
|
||
GetData returns the Data field if non-nil, zero value otherwise. | ||
|
||
### GetDataOk | ||
|
||
`func (o *NullableRelationshipToUser) GetDataOk() (*NullableRelationshipToUserData, bool)` | ||
|
||
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetData | ||
|
||
`func (o *NullableRelationshipToUser) SetData(v NullableRelationshipToUserData)` | ||
|
||
SetData sets Data field to given value. | ||
|
||
### SetDataNil | ||
|
||
`func (o *NullableRelationshipToUser) SetDataNil(b bool)` | ||
|
||
SetDataNil sets the value for Data to be an explicit nil | ||
|
||
### UnsetData | ||
|
||
`func (o *NullableRelationshipToUser) UnsetData()` | ||
|
||
UnsetData ensures that no value is present for Data, not even an explicit nil | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) |
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,67 @@ | ||
# NullableRelationshipToUserData | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| -------- | ----------------------------- | --------------------------------------------- | ---------------------------- | | ||
| **Id** | **string** | A unique identifier that represents the user. | | ||
| **Type** | [**UsersType**](UsersType.md) | | [default to USERSTYPE_USERS] | | ||
|
||
## Methods | ||
|
||
### NewNullableRelationshipToUserData | ||
|
||
`func NewNullableRelationshipToUserData(id string, type_ UsersType) *NullableRelationshipToUserData` | ||
|
||
NewNullableRelationshipToUserData instantiates a new NullableRelationshipToUserData object. | ||
This constructor will assign default values to properties that have it defined, | ||
and makes sure properties required by API are set, but the set of arguments | ||
will change when the set of required properties is changed. | ||
|
||
### NewNullableRelationshipToUserDataWithDefaults | ||
|
||
`func NewNullableRelationshipToUserDataWithDefaults() *NullableRelationshipToUserData` | ||
|
||
NewNullableRelationshipToUserDataWithDefaults instantiates a new NullableRelationshipToUserData object. | ||
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. | ||
|
||
### GetId | ||
|
||
`func (o *NullableRelationshipToUserData) GetId() string` | ||
|
||
GetId returns the Id field if non-nil, zero value otherwise. | ||
|
||
### GetIdOk | ||
|
||
`func (o *NullableRelationshipToUserData) GetIdOk() (*string, bool)` | ||
|
||
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetId | ||
|
||
`func (o *NullableRelationshipToUserData) SetId(v string)` | ||
|
||
SetId sets Id field to given value. | ||
|
||
### GetType | ||
|
||
`func (o *NullableRelationshipToUserData) GetType() UsersType` | ||
|
||
GetType returns the Type field if non-nil, zero value otherwise. | ||
|
||
### GetTypeOk | ||
|
||
`func (o *NullableRelationshipToUserData) GetTypeOk() (*UsersType, bool)` | ||
|
||
GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetType | ||
|
||
`func (o *NullableRelationshipToUserData) SetType(v UsersType)` | ||
|
||
SetType sets Type field to given value. | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) |
Oops, something went wrong.