starting point for go docs

This commit is contained in:
darrell-thobe-sp
2025-03-27 14:43:04 -04:00
parent bdfaf3e228
commit 34d14a520e
2762 changed files with 516453 additions and 0 deletions

View File

@@ -0,0 +1,90 @@
---
id: beta-password-info-account
title: PasswordInfoAccount
pagination_label: PasswordInfoAccount
sidebar_label: PasswordInfoAccount
sidebar_class_name: gosdk
keywords: ['go', 'Golang', 'sdk', 'PasswordInfoAccount', 'BetaPasswordInfoAccount']
slug: /tools/sdk/go/beta/models/password-info-account
tags: ['SDK', 'Software Development Kit', 'PasswordInfoAccount', 'BetaPasswordInfoAccount']
---
# PasswordInfoAccount
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**AccountId** | Pointer to **string** | Account ID of the account. This is specified per account schema in the source configuration. It is used to distinguish accounts. More info can be found here https://community.sailpoint.com/t5/IdentityNow-Connectors/How-do-I-designate-an-account-attribute-as-the-Account-ID-for-a/ta-p/80350 | [optional]
**AccountName** | Pointer to **string** | Display name of the account. This is specified per account schema in the source configuration. It is used to display name of the account. More info can be found here https://community.sailpoint.com/t5/IdentityNow-Connectors/How-do-I-designate-an-account-attribute-as-the-Account-Name-for/ta-p/74008 | [optional]
## Methods
### NewPasswordInfoAccount
`func NewPasswordInfoAccount() *PasswordInfoAccount`
NewPasswordInfoAccount instantiates a new PasswordInfoAccount 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
### NewPasswordInfoAccountWithDefaults
`func NewPasswordInfoAccountWithDefaults() *PasswordInfoAccount`
NewPasswordInfoAccountWithDefaults instantiates a new PasswordInfoAccount 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
### GetAccountId
`func (o *PasswordInfoAccount) GetAccountId() string`
GetAccountId returns the AccountId field if non-nil, zero value otherwise.
### GetAccountIdOk
`func (o *PasswordInfoAccount) GetAccountIdOk() (*string, bool)`
GetAccountIdOk returns a tuple with the AccountId field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetAccountId
`func (o *PasswordInfoAccount) SetAccountId(v string)`
SetAccountId sets AccountId field to given value.
### HasAccountId
`func (o *PasswordInfoAccount) HasAccountId() bool`
HasAccountId returns a boolean if a field has been set.
### GetAccountName
`func (o *PasswordInfoAccount) GetAccountName() string`
GetAccountName returns the AccountName field if non-nil, zero value otherwise.
### GetAccountNameOk
`func (o *PasswordInfoAccount) GetAccountNameOk() (*string, bool)`
GetAccountNameOk returns a tuple with the AccountName field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.
### SetAccountName
`func (o *PasswordInfoAccount) SetAccountName(v string)`
SetAccountName sets AccountName field to given value.
### HasAccountName
`func (o *PasswordInfoAccount) HasAccountName() bool`
HasAccountName returns a boolean if a field has been set.