mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-10 12:27:47 +00:00
empty method and model folders for go to start fixing build
This commit is contained in:
@@ -1,520 +0,0 @@
|
||||
---
|
||||
id: account-activity-searched-item
|
||||
title: AccountActivitySearchedItem
|
||||
pagination_label: AccountActivitySearchedItem
|
||||
sidebar_label: AccountActivitySearchedItem
|
||||
sidebar_class_name: gosdk
|
||||
keywords: ['go', 'Golang', 'sdk', 'AccountActivitySearchedItem', 'AccountActivitySearchedItem']
|
||||
slug: /tools/sdk/go/v3/models/account-activity-searched-item
|
||||
tags: ['SDK', 'Software Development Kit', 'AccountActivitySearchedItem', 'AccountActivitySearchedItem']
|
||||
---
|
||||
|
||||
# AccountActivitySearchedItem
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Id** | Pointer to **string** | ID of account activity. | [optional]
|
||||
**Action** | Pointer to **string** | Type of action performed in the activity. | [optional]
|
||||
**Created** | Pointer to **NullableTime** | ISO-8601 date-time referring to the time when the object was created. | [optional]
|
||||
**Modified** | Pointer to **NullableTime** | ISO-8601 date-time referring to the time when the object was last modified. | [optional]
|
||||
**Synced** | Pointer to **string** | ISO-8601 date-time referring to the date-time when object was queued to be synced into search database for use in the search API. This date-time changes anytime there is an update to the object, which triggers a synchronization event being sent to the search database. There may be some delay between the `synced` time and the time when the updated data is actually available in the search API. | [optional]
|
||||
**Stage** | Pointer to **string** | Activity's current stage. | [optional]
|
||||
**Status** | Pointer to **string** | Activity's current status. | [optional]
|
||||
**Requester** | Pointer to [**ActivityIdentity**](activity-identity) | | [optional]
|
||||
**Recipient** | Pointer to [**ActivityIdentity**](activity-identity) | | [optional]
|
||||
**TrackingNumber** | Pointer to **string** | Account activity's tracking number. | [optional]
|
||||
**Errors** | Pointer to **[]string** | Errors provided by the source while completing account actions. | [optional]
|
||||
**Warnings** | Pointer to **[]string** | Warnings provided by the source while completing account actions. | [optional]
|
||||
**Approvals** | Pointer to [**[]Approval**](approval) | Approvals performed on an item during activity. | [optional]
|
||||
**OriginalRequests** | Pointer to [**[]OriginalRequest**](original-request) | Original actions that triggered all individual source actions related to the account action. | [optional]
|
||||
**ExpansionItems** | Pointer to [**[]ExpansionItem**](expansion-item) | Controls that translated the attribute requests into actual provisioning actions on the source. | [optional]
|
||||
**AccountRequests** | Pointer to [**[]AccountRequest**](account-request) | Account data for each individual source action triggered by the original requests. | [optional]
|
||||
**Sources** | Pointer to **string** | Sources involved in the account activity. | [optional]
|
||||
|
||||
## Methods
|
||||
|
||||
### NewAccountActivitySearchedItem
|
||||
|
||||
`func NewAccountActivitySearchedItem() *AccountActivitySearchedItem`
|
||||
|
||||
NewAccountActivitySearchedItem instantiates a new AccountActivitySearchedItem 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
|
||||
|
||||
### NewAccountActivitySearchedItemWithDefaults
|
||||
|
||||
`func NewAccountActivitySearchedItemWithDefaults() *AccountActivitySearchedItem`
|
||||
|
||||
NewAccountActivitySearchedItemWithDefaults instantiates a new AccountActivitySearchedItem 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 *AccountActivitySearchedItem) GetId() string`
|
||||
|
||||
GetId returns the Id field if non-nil, zero value otherwise.
|
||||
|
||||
### GetIdOk
|
||||
|
||||
`func (o *AccountActivitySearchedItem) 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 *AccountActivitySearchedItem) SetId(v string)`
|
||||
|
||||
SetId sets Id field to given value.
|
||||
|
||||
### HasId
|
||||
|
||||
`func (o *AccountActivitySearchedItem) HasId() bool`
|
||||
|
||||
HasId returns a boolean if a field has been set.
|
||||
|
||||
### GetAction
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetAction() string`
|
||||
|
||||
GetAction returns the Action field if non-nil, zero value otherwise.
|
||||
|
||||
### GetActionOk
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetActionOk() (*string, bool)`
|
||||
|
||||
GetActionOk returns a tuple with the Action field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetAction
|
||||
|
||||
`func (o *AccountActivitySearchedItem) SetAction(v string)`
|
||||
|
||||
SetAction sets Action field to given value.
|
||||
|
||||
### HasAction
|
||||
|
||||
`func (o *AccountActivitySearchedItem) HasAction() bool`
|
||||
|
||||
HasAction returns a boolean if a field has been set.
|
||||
|
||||
### GetCreated
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetCreated() time.Time`
|
||||
|
||||
GetCreated returns the Created field if non-nil, zero value otherwise.
|
||||
|
||||
### GetCreatedOk
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetCreatedOk() (*time.Time, bool)`
|
||||
|
||||
GetCreatedOk returns a tuple with the Created field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetCreated
|
||||
|
||||
`func (o *AccountActivitySearchedItem) SetCreated(v time.Time)`
|
||||
|
||||
SetCreated sets Created field to given value.
|
||||
|
||||
### HasCreated
|
||||
|
||||
`func (o *AccountActivitySearchedItem) HasCreated() bool`
|
||||
|
||||
HasCreated returns a boolean if a field has been set.
|
||||
|
||||
### SetCreatedNil
|
||||
|
||||
`func (o *AccountActivitySearchedItem) SetCreatedNil(b bool)`
|
||||
|
||||
SetCreatedNil sets the value for Created to be an explicit nil
|
||||
|
||||
### UnsetCreated
|
||||
`func (o *AccountActivitySearchedItem) UnsetCreated()`
|
||||
|
||||
UnsetCreated ensures that no value is present for Created, not even an explicit nil
|
||||
### GetModified
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetModified() time.Time`
|
||||
|
||||
GetModified returns the Modified field if non-nil, zero value otherwise.
|
||||
|
||||
### GetModifiedOk
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetModifiedOk() (*time.Time, bool)`
|
||||
|
||||
GetModifiedOk returns a tuple with the Modified field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetModified
|
||||
|
||||
`func (o *AccountActivitySearchedItem) SetModified(v time.Time)`
|
||||
|
||||
SetModified sets Modified field to given value.
|
||||
|
||||
### HasModified
|
||||
|
||||
`func (o *AccountActivitySearchedItem) HasModified() bool`
|
||||
|
||||
HasModified returns a boolean if a field has been set.
|
||||
|
||||
### SetModifiedNil
|
||||
|
||||
`func (o *AccountActivitySearchedItem) SetModifiedNil(b bool)`
|
||||
|
||||
SetModifiedNil sets the value for Modified to be an explicit nil
|
||||
|
||||
### UnsetModified
|
||||
`func (o *AccountActivitySearchedItem) UnsetModified()`
|
||||
|
||||
UnsetModified ensures that no value is present for Modified, not even an explicit nil
|
||||
### GetSynced
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetSynced() string`
|
||||
|
||||
GetSynced returns the Synced field if non-nil, zero value otherwise.
|
||||
|
||||
### GetSyncedOk
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetSyncedOk() (*string, bool)`
|
||||
|
||||
GetSyncedOk returns a tuple with the Synced field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetSynced
|
||||
|
||||
`func (o *AccountActivitySearchedItem) SetSynced(v string)`
|
||||
|
||||
SetSynced sets Synced field to given value.
|
||||
|
||||
### HasSynced
|
||||
|
||||
`func (o *AccountActivitySearchedItem) HasSynced() bool`
|
||||
|
||||
HasSynced returns a boolean if a field has been set.
|
||||
|
||||
### GetStage
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetStage() string`
|
||||
|
||||
GetStage returns the Stage field if non-nil, zero value otherwise.
|
||||
|
||||
### GetStageOk
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetStageOk() (*string, bool)`
|
||||
|
||||
GetStageOk returns a tuple with the Stage field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetStage
|
||||
|
||||
`func (o *AccountActivitySearchedItem) SetStage(v string)`
|
||||
|
||||
SetStage sets Stage field to given value.
|
||||
|
||||
### HasStage
|
||||
|
||||
`func (o *AccountActivitySearchedItem) HasStage() bool`
|
||||
|
||||
HasStage returns a boolean if a field has been set.
|
||||
|
||||
### GetStatus
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetStatus() string`
|
||||
|
||||
GetStatus returns the Status field if non-nil, zero value otherwise.
|
||||
|
||||
### GetStatusOk
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetStatusOk() (*string, bool)`
|
||||
|
||||
GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetStatus
|
||||
|
||||
`func (o *AccountActivitySearchedItem) SetStatus(v string)`
|
||||
|
||||
SetStatus sets Status field to given value.
|
||||
|
||||
### HasStatus
|
||||
|
||||
`func (o *AccountActivitySearchedItem) HasStatus() bool`
|
||||
|
||||
HasStatus returns a boolean if a field has been set.
|
||||
|
||||
### GetRequester
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetRequester() ActivityIdentity`
|
||||
|
||||
GetRequester returns the Requester field if non-nil, zero value otherwise.
|
||||
|
||||
### GetRequesterOk
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetRequesterOk() (*ActivityIdentity, bool)`
|
||||
|
||||
GetRequesterOk returns a tuple with the Requester field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetRequester
|
||||
|
||||
`func (o *AccountActivitySearchedItem) SetRequester(v ActivityIdentity)`
|
||||
|
||||
SetRequester sets Requester field to given value.
|
||||
|
||||
### HasRequester
|
||||
|
||||
`func (o *AccountActivitySearchedItem) HasRequester() bool`
|
||||
|
||||
HasRequester returns a boolean if a field has been set.
|
||||
|
||||
### GetRecipient
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetRecipient() ActivityIdentity`
|
||||
|
||||
GetRecipient returns the Recipient field if non-nil, zero value otherwise.
|
||||
|
||||
### GetRecipientOk
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetRecipientOk() (*ActivityIdentity, bool)`
|
||||
|
||||
GetRecipientOk returns a tuple with the Recipient field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetRecipient
|
||||
|
||||
`func (o *AccountActivitySearchedItem) SetRecipient(v ActivityIdentity)`
|
||||
|
||||
SetRecipient sets Recipient field to given value.
|
||||
|
||||
### HasRecipient
|
||||
|
||||
`func (o *AccountActivitySearchedItem) HasRecipient() bool`
|
||||
|
||||
HasRecipient returns a boolean if a field has been set.
|
||||
|
||||
### GetTrackingNumber
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetTrackingNumber() string`
|
||||
|
||||
GetTrackingNumber returns the TrackingNumber field if non-nil, zero value otherwise.
|
||||
|
||||
### GetTrackingNumberOk
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetTrackingNumberOk() (*string, bool)`
|
||||
|
||||
GetTrackingNumberOk returns a tuple with the TrackingNumber field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetTrackingNumber
|
||||
|
||||
`func (o *AccountActivitySearchedItem) SetTrackingNumber(v string)`
|
||||
|
||||
SetTrackingNumber sets TrackingNumber field to given value.
|
||||
|
||||
### HasTrackingNumber
|
||||
|
||||
`func (o *AccountActivitySearchedItem) HasTrackingNumber() bool`
|
||||
|
||||
HasTrackingNumber returns a boolean if a field has been set.
|
||||
|
||||
### GetErrors
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetErrors() []string`
|
||||
|
||||
GetErrors returns the Errors field if non-nil, zero value otherwise.
|
||||
|
||||
### GetErrorsOk
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetErrorsOk() (*[]string, bool)`
|
||||
|
||||
GetErrorsOk returns a tuple with the Errors field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetErrors
|
||||
|
||||
`func (o *AccountActivitySearchedItem) SetErrors(v []string)`
|
||||
|
||||
SetErrors sets Errors field to given value.
|
||||
|
||||
### HasErrors
|
||||
|
||||
`func (o *AccountActivitySearchedItem) HasErrors() bool`
|
||||
|
||||
HasErrors returns a boolean if a field has been set.
|
||||
|
||||
### SetErrorsNil
|
||||
|
||||
`func (o *AccountActivitySearchedItem) SetErrorsNil(b bool)`
|
||||
|
||||
SetErrorsNil sets the value for Errors to be an explicit nil
|
||||
|
||||
### UnsetErrors
|
||||
`func (o *AccountActivitySearchedItem) UnsetErrors()`
|
||||
|
||||
UnsetErrors ensures that no value is present for Errors, not even an explicit nil
|
||||
### GetWarnings
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetWarnings() []string`
|
||||
|
||||
GetWarnings returns the Warnings field if non-nil, zero value otherwise.
|
||||
|
||||
### GetWarningsOk
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetWarningsOk() (*[]string, bool)`
|
||||
|
||||
GetWarningsOk returns a tuple with the Warnings field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetWarnings
|
||||
|
||||
`func (o *AccountActivitySearchedItem) SetWarnings(v []string)`
|
||||
|
||||
SetWarnings sets Warnings field to given value.
|
||||
|
||||
### HasWarnings
|
||||
|
||||
`func (o *AccountActivitySearchedItem) HasWarnings() bool`
|
||||
|
||||
HasWarnings returns a boolean if a field has been set.
|
||||
|
||||
### SetWarningsNil
|
||||
|
||||
`func (o *AccountActivitySearchedItem) SetWarningsNil(b bool)`
|
||||
|
||||
SetWarningsNil sets the value for Warnings to be an explicit nil
|
||||
|
||||
### UnsetWarnings
|
||||
`func (o *AccountActivitySearchedItem) UnsetWarnings()`
|
||||
|
||||
UnsetWarnings ensures that no value is present for Warnings, not even an explicit nil
|
||||
### GetApprovals
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetApprovals() []Approval`
|
||||
|
||||
GetApprovals returns the Approvals field if non-nil, zero value otherwise.
|
||||
|
||||
### GetApprovalsOk
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetApprovalsOk() (*[]Approval, bool)`
|
||||
|
||||
GetApprovalsOk returns a tuple with the Approvals field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetApprovals
|
||||
|
||||
`func (o *AccountActivitySearchedItem) SetApprovals(v []Approval)`
|
||||
|
||||
SetApprovals sets Approvals field to given value.
|
||||
|
||||
### HasApprovals
|
||||
|
||||
`func (o *AccountActivitySearchedItem) HasApprovals() bool`
|
||||
|
||||
HasApprovals returns a boolean if a field has been set.
|
||||
|
||||
### GetOriginalRequests
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetOriginalRequests() []OriginalRequest`
|
||||
|
||||
GetOriginalRequests returns the OriginalRequests field if non-nil, zero value otherwise.
|
||||
|
||||
### GetOriginalRequestsOk
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetOriginalRequestsOk() (*[]OriginalRequest, bool)`
|
||||
|
||||
GetOriginalRequestsOk returns a tuple with the OriginalRequests field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetOriginalRequests
|
||||
|
||||
`func (o *AccountActivitySearchedItem) SetOriginalRequests(v []OriginalRequest)`
|
||||
|
||||
SetOriginalRequests sets OriginalRequests field to given value.
|
||||
|
||||
### HasOriginalRequests
|
||||
|
||||
`func (o *AccountActivitySearchedItem) HasOriginalRequests() bool`
|
||||
|
||||
HasOriginalRequests returns a boolean if a field has been set.
|
||||
|
||||
### GetExpansionItems
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetExpansionItems() []ExpansionItem`
|
||||
|
||||
GetExpansionItems returns the ExpansionItems field if non-nil, zero value otherwise.
|
||||
|
||||
### GetExpansionItemsOk
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetExpansionItemsOk() (*[]ExpansionItem, bool)`
|
||||
|
||||
GetExpansionItemsOk returns a tuple with the ExpansionItems field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetExpansionItems
|
||||
|
||||
`func (o *AccountActivitySearchedItem) SetExpansionItems(v []ExpansionItem)`
|
||||
|
||||
SetExpansionItems sets ExpansionItems field to given value.
|
||||
|
||||
### HasExpansionItems
|
||||
|
||||
`func (o *AccountActivitySearchedItem) HasExpansionItems() bool`
|
||||
|
||||
HasExpansionItems returns a boolean if a field has been set.
|
||||
|
||||
### GetAccountRequests
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetAccountRequests() []AccountRequest`
|
||||
|
||||
GetAccountRequests returns the AccountRequests field if non-nil, zero value otherwise.
|
||||
|
||||
### GetAccountRequestsOk
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetAccountRequestsOk() (*[]AccountRequest, bool)`
|
||||
|
||||
GetAccountRequestsOk returns a tuple with the AccountRequests field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetAccountRequests
|
||||
|
||||
`func (o *AccountActivitySearchedItem) SetAccountRequests(v []AccountRequest)`
|
||||
|
||||
SetAccountRequests sets AccountRequests field to given value.
|
||||
|
||||
### HasAccountRequests
|
||||
|
||||
`func (o *AccountActivitySearchedItem) HasAccountRequests() bool`
|
||||
|
||||
HasAccountRequests returns a boolean if a field has been set.
|
||||
|
||||
### GetSources
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetSources() string`
|
||||
|
||||
GetSources returns the Sources field if non-nil, zero value otherwise.
|
||||
|
||||
### GetSourcesOk
|
||||
|
||||
`func (o *AccountActivitySearchedItem) GetSourcesOk() (*string, bool)`
|
||||
|
||||
GetSourcesOk returns a tuple with the Sources field if it's non-nil, zero value otherwise
|
||||
and a boolean to check if the value has been set.
|
||||
|
||||
### SetSources
|
||||
|
||||
`func (o *AccountActivitySearchedItem) SetSources(v string)`
|
||||
|
||||
SetSources sets Sources field to given value.
|
||||
|
||||
### HasSources
|
||||
|
||||
`func (o *AccountActivitySearchedItem) HasSources() bool`
|
||||
|
||||
HasSources returns a boolean if a field has been set.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user