Categorygithub.com/stripedapps/pipedrive-go-sdk
modulepackage
0.0.0-20240724192246-01476ed3c737
Repository: https://github.com/stripedapps/pipedrive-go-sdk.git
Documentation: pkg.go.dev

# README

Go API client for openapi

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: 1.0.0
  • Package version: 1.0.0
  • Generator version: 7.7.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/oauth2
go get golang.org/x/net/context

Put the package under your project folder and add the following in import:

import openapi "github.com/stripedapps/pipedrive-go-sdk"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value openapi.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), openapi.ContextServerIndex, 1)

Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value openapi.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), openapi.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identified by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using openapi.ContextOperationServerIndices and openapi.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), openapi.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), openapi.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to https://api.pipedrive.com/v1

ClassMethodHTTP requestDescription
ActivitiesAPIAddActivityPost /activitiesAdd an activity
ActivitiesAPIDeleteActivitiesDelete /activitiesDelete multiple activities in bulk
ActivitiesAPIDeleteActivityDelete /activities/{id}Delete an activity
ActivitiesAPIGetActivitiesGet /activitiesGet all activities assigned to a particular user
ActivitiesAPIGetActivitiesCollectionGet /activities/collectionGet all activities (BETA)
ActivitiesAPIGetActivityGet /activities/{id}Get details of an activity
ActivitiesAPIUpdateActivityPut /activities/{id}Update an activity
ActivityFieldsAPIGetActivityFieldsGet /activityFieldsGet all activity fields
ActivityTypesAPIAddActivityTypePost /activityTypesAdd new activity type
ActivityTypesAPIDeleteActivityTypeDelete /activityTypes/{id}Delete an activity type
ActivityTypesAPIDeleteActivityTypesDelete /activityTypesDelete multiple activity types in bulk
ActivityTypesAPIGetActivityTypesGet /activityTypesGet all activity types
ActivityTypesAPIUpdateActivityTypePut /activityTypes/{id}Update an activity type
BillingAPIGetCompanyAddonsGet /billing/subscriptions/addonsGet all add-ons for a single company
CallLogsAPIAddCallLogPost /callLogsAdd a call log
CallLogsAPIAddCallLogAudioFilePost /callLogs/{id}/recordingsAttach an audio file to the call log
CallLogsAPIDeleteCallLogDelete /callLogs/{id}Delete a call log
CallLogsAPIGetCallLogGet /callLogs/{id}Get details of a call log
CallLogsAPIGetUserCallLogsGet /callLogsGet all call logs assigned to a particular user
ChannelsAPIAddChannelPost /channelsAdd a channel
ChannelsAPIDeleteChannelDelete /channels/{id}Delete a channel
ChannelsAPIDeleteConversationDelete /channels/{channel-id}/conversations/{conversation-id}Delete a conversation
ChannelsAPIReceiveMessagePost /channels/messages/receiveReceives an incoming message
CurrenciesAPIGetCurrenciesGet /currenciesGet all supported currencies
DealFieldsAPIAddDealFieldPost /dealFieldsAdd a new deal field
DealFieldsAPIDeleteDealFieldDelete /dealFields/{id}Delete a deal field
DealFieldsAPIDeleteDealFieldsDelete /dealFieldsDelete multiple deal fields in bulk
DealFieldsAPIGetDealFieldGet /dealFields/{id}Get one deal field
DealFieldsAPIGetDealFieldsGet /dealFieldsGet all deal fields
DealFieldsAPIUpdateDealFieldPut /dealFields/{id}Update a deal field
DealsAPIAddDealPost /dealsAdd a deal
DealsAPIAddDealFollowerPost /deals/{id}/followersAdd a follower to a deal
DealsAPIAddDealParticipantPost /deals/{id}/participantsAdd a participant to a deal
DealsAPIAddDealProductPost /deals/{id}/productsAdd a product to a deal
DealsAPIDeleteDealDelete /deals/{id}Delete a deal
DealsAPIDeleteDealFollowerDelete /deals/{id}/followers/{follower_id}Delete a follower from a deal
DealsAPIDeleteDealParticipantDelete /deals/{id}/participants/{deal_participant_id}Delete a participant from a deal
DealsAPIDeleteDealProductDelete /deals/{id}/products/{product_attachment_id}Delete an attached product from a deal
DealsAPIDeleteDealsDelete /dealsDelete multiple deals in bulk
DealsAPIDuplicateDealPost /deals/{id}/duplicateDuplicate deal
DealsAPIGetDealGet /deals/{id}Get details of a deal
DealsAPIGetDealActivitiesGet /deals/{id}/activitiesList activities associated with a deal
DealsAPIGetDealChangelogGet /deals/{id}/changelogList updates about deal field values
DealsAPIGetDealFilesGet /deals/{id}/filesList files attached to a deal
DealsAPIGetDealFollowersGet /deals/{id}/followersList followers of a deal
DealsAPIGetDealMailMessagesGet /deals/{id}/mailMessagesList mail messages associated with a deal
DealsAPIGetDealParticipantsGet /deals/{id}/participantsList participants of a deal
DealsAPIGetDealParticipantsChangelogGet /deals/{id}/participantsChangelogList updates about participants of a deal
DealsAPIGetDealPersonsGet /deals/{id}/personsList all persons associated with a deal
DealsAPIGetDealProductsGet /deals/{id}/productsList products attached to a deal
DealsAPIGetDealUpdatesGet /deals/{id}/flowList updates about a deal
DealsAPIGetDealUsersGet /deals/{id}/permittedUsersList permitted users
DealsAPIGetDealsGet /dealsGet all deals
DealsAPIGetDealsCollectionGet /deals/collectionGet all deals (BETA)
DealsAPIGetDealsSummaryGet /deals/summaryGet deals summary
DealsAPIGetDealsTimelineGet /deals/timelineGet deals timeline
DealsAPIMergeDealsPut /deals/{id}/mergeMerge two deals
DealsAPISearchDealsGet /deals/searchSearch deals
DealsAPIUpdateDealPut /deals/{id}Update a deal
DealsAPIUpdateDealProductPut /deals/{id}/products/{product_attachment_id}Update the product attached to a deal
FilesAPIAddFilePost /filesAdd file
FilesAPIAddFileAndLinkItPost /files/remoteCreate a remote file and link it to an item
FilesAPIDeleteFileDelete /files/{id}Delete a file
FilesAPIDownloadFileGet /files/{id}/downloadDownload one file
FilesAPIGetFileGet /files/{id}Get one file
FilesAPIGetFilesGet /filesGet all files
FilesAPILinkFileToItemPost /files/remoteLinkLink a remote file to an item
FilesAPIUpdateFilePut /files/{id}Update file details
FiltersAPIAddFilterPost /filtersAdd a new filter
FiltersAPIDeleteFilterDelete /filters/{id}Delete a filter
FiltersAPIDeleteFiltersDelete /filtersDelete multiple filters in bulk
FiltersAPIGetFilterGet /filters/{id}Get one filter
FiltersAPIGetFilterHelpersGet /filters/helpersGet all filter helpers
FiltersAPIGetFiltersGet /filtersGet all filters
FiltersAPIUpdateFilterPut /filters/{id}Update filter
GoalsAPIAddGoalPost /goalsAdd a new goal
GoalsAPIDeleteGoalDelete /goals/{id}Delete existing goal
GoalsAPIGetGoalResultGet /goals/{id}/resultsGet result of a goal
GoalsAPIGetGoalsGet /goals/findFind goals
GoalsAPIUpdateGoalPut /goals/{id}Update existing goal
ItemSearchAPISearchItemGet /itemSearchPerform a search from multiple item types
ItemSearchAPISearchItemByFieldGet /itemSearch/fieldPerform a search using a specific field from an item type
LeadLabelsAPIAddLeadLabelPost /leadLabelsAdd a lead label
LeadLabelsAPIDeleteLeadLabelDelete /leadLabels/{id}Delete a lead label
LeadLabelsAPIGetLeadLabelsGet /leadLabelsGet all lead labels
LeadLabelsAPIUpdateLeadLabelPatch /leadLabels/{id}Update a lead label
LeadSourcesAPIGetLeadSourcesGet /leadSourcesGet all lead sources
LeadsAPIAddLeadPost /leadsAdd a lead
LeadsAPIDeleteLeadDelete /leads/{id}Delete a lead
LeadsAPIGetLeadGet /leads/{id}Get one lead
LeadsAPIGetLeadUsersGet /leads/{id}/permittedUsersList permitted users
LeadsAPIGetLeadsGet /leadsGet all leads
LeadsAPISearchLeadsGet /leads/searchSearch leads
LeadsAPIUpdateLeadPatch /leads/{id}Update a lead
LegacyTeamsAPIAddTeamPost /legacyTeamsAdd a new team
LegacyTeamsAPIAddTeamUserPost /legacyTeams/{id}/usersAdd users to a team
LegacyTeamsAPIDeleteTeamUserDelete /legacyTeams/{id}/usersDelete users from a team
LegacyTeamsAPIGetTeamGet /legacyTeams/{id}Get a single team
LegacyTeamsAPIGetTeamUsersGet /legacyTeams/{id}/usersGet all users in a team
LegacyTeamsAPIGetTeamsGet /legacyTeamsGet all teams
LegacyTeamsAPIGetUserTeamsGet /legacyTeams/user/{id}Get all teams of a user
LegacyTeamsAPIUpdateTeamPut /legacyTeams/{id}Update a team
MailboxAPIDeleteMailThreadDelete /mailbox/mailThreads/{id}Delete mail thread
MailboxAPIGetMailMessageGet /mailbox/mailMessages/{id}Get one mail message
MailboxAPIGetMailThreadGet /mailbox/mailThreads/{id}Get one mail thread
MailboxAPIGetMailThreadMessagesGet /mailbox/mailThreads/{id}/mailMessagesGet all mail messages of mail thread
MailboxAPIGetMailThreadsGet /mailbox/mailThreadsGet mail threads
MailboxAPIUpdateMailThreadDetailsPut /mailbox/mailThreads/{id}Update mail thread details
MeetingsAPIDeleteUserProviderLinkDelete /meetings/userProviderLinks/{id}Delete the link between a user and the installed video call integration
MeetingsAPISaveUserProviderLinkPost /meetings/userProviderLinksLink a user with the installed video call integration
NoteFieldsAPIGetNoteFieldsGet /noteFieldsGet all note fields
NotesAPIAddNotePost /notesAdd a note
NotesAPIAddNoteCommentPost /notes/{id}/commentsAdd a comment to a note
NotesAPIDeleteCommentDelete /notes/{id}/comments/{commentId}Delete a comment related to a note
NotesAPIDeleteNoteDelete /notes/{id}Delete a note
NotesAPIGetCommentGet /notes/{id}/comments/{commentId}Get one comment
NotesAPIGetNoteGet /notes/{id}Get one note
NotesAPIGetNoteCommentsGet /notes/{id}/commentsGet all comments for a note
NotesAPIGetNotesGet /notesGet all notes
NotesAPIUpdateCommentForNotePut /notes/{id}/comments/{commentId}Update a comment related to a note
NotesAPIUpdateNotePut /notes/{id}Update a note
OauthAPIAuthorizeGet /oauth/authorizeRequesting authorization
OauthAPIGetTokensPost /oauth/tokenGetting the tokens
OauthAPIRefreshTokensPost /oauth/token/Refreshing the tokens
OrganizationFieldsAPIAddOrganizationFieldPost /organizationFieldsAdd a new organization field
OrganizationFieldsAPIDeleteOrganizationFieldDelete /organizationFields/{id}Delete an organization field
OrganizationFieldsAPIDeleteOrganizationFieldsDelete /organizationFieldsDelete multiple organization fields in bulk
OrganizationFieldsAPIGetOrganizationFieldGet /organizationFields/{id}Get one organization field
OrganizationFieldsAPIGetOrganizationFieldsGet /organizationFieldsGet all organization fields
OrganizationFieldsAPIUpdateOrganizationFieldPut /organizationFields/{id}Update an organization field
OrganizationRelationshipsAPIAddOrganizationRelationshipPost /organizationRelationshipsCreate an organization relationship
OrganizationRelationshipsAPIDeleteOrganizationRelationshipDelete /organizationRelationships/{id}Delete an organization relationship
OrganizationRelationshipsAPIGetOrganizationRelationshipGet /organizationRelationships/{id}Get one organization relationship
OrganizationRelationshipsAPIGetOrganizationRelationshipsGet /organizationRelationshipsGet all relationships for organization
OrganizationRelationshipsAPIUpdateOrganizationRelationshipPut /organizationRelationships/{id}Update an organization relationship
OrganizationsAPIAddOrganizationPost /organizationsAdd an organization
OrganizationsAPIAddOrganizationFollowerPost /organizations/{id}/followersAdd a follower to an organization
OrganizationsAPIDeleteOrganizationDelete /organizations/{id}Delete an organization
OrganizationsAPIDeleteOrganizationFollowerDelete /organizations/{id}/followers/{follower_id}Delete a follower from an organization
OrganizationsAPIDeleteOrganizationsDelete /organizationsDelete multiple organizations in bulk
OrganizationsAPIGetOrganizationGet /organizations/{id}Get details of an organization
OrganizationsAPIGetOrganizationActivitiesGet /organizations/{id}/activitiesList activities associated with an organization
OrganizationsAPIGetOrganizationChangelogGet /organizations/{id}/changelogList updates about organization field values
OrganizationsAPIGetOrganizationDealsGet /organizations/{id}/dealsList deals associated with an organization
OrganizationsAPIGetOrganizationFilesGet /organizations/{id}/filesList files attached to an organization
OrganizationsAPIGetOrganizationFollowersGet /organizations/{id}/followersList followers of an organization
OrganizationsAPIGetOrganizationMailMessagesGet /organizations/{id}/mailMessagesList mail messages associated with an organization
OrganizationsAPIGetOrganizationPersonsGet /organizations/{id}/personsList persons of an organization
OrganizationsAPIGetOrganizationUpdatesGet /organizations/{id}/flowList updates about an organization
OrganizationsAPIGetOrganizationUsersGet /organizations/{id}/permittedUsersList permitted users
OrganizationsAPIGetOrganizationsGet /organizationsGet all organizations
OrganizationsAPIGetOrganizationsCollectionGet /organizations/collectionGet all organizations (BETA)
OrganizationsAPIMergeOrganizationsPut /organizations/{id}/mergeMerge two organizations
OrganizationsAPISearchOrganizationGet /organizations/searchSearch organizations
OrganizationsAPIUpdateOrganizationPut /organizations/{id}Update an organization
PermissionSetsAPIGetPermissionSetGet /permissionSets/{id}Get one permission set
PermissionSetsAPIGetPermissionSetAssignmentsGet /permissionSets/{id}/assignmentsList permission set assignments
PermissionSetsAPIGetPermissionSetsGet /permissionSetsGet all permission sets
PersonFieldsAPIAddPersonFieldPost /personFieldsAdd a new person field
PersonFieldsAPIDeletePersonFieldDelete /personFields/{id}Delete a person field
PersonFieldsAPIDeletePersonFieldsDelete /personFieldsDelete multiple person fields in bulk
PersonFieldsAPIGetPersonFieldGet /personFields/{id}Get one person field
PersonFieldsAPIGetPersonFieldsGet /personFieldsGet all person fields
PersonFieldsAPIUpdatePersonFieldPut /personFields/{id}Update a person field
PersonsAPIAddPersonPost /personsAdd a person
PersonsAPIAddPersonFollowerPost /persons/{id}/followersAdd a follower to a person
PersonsAPIAddPersonPicturePost /persons/{id}/pictureAdd person picture
PersonsAPIDeletePersonDelete /persons/{id}Delete a person
PersonsAPIDeletePersonFollowerDelete /persons/{id}/followers/{follower_id}Delete a follower from a person
PersonsAPIDeletePersonPictureDelete /persons/{id}/pictureDelete person picture
PersonsAPIDeletePersonsDelete /personsDelete multiple persons in bulk
PersonsAPIGetPersonGet /persons/{id}Get details of a person
PersonsAPIGetPersonActivitiesGet /persons/{id}/activitiesList activities associated with a person
PersonsAPIGetPersonChangelogGet /persons/{id}/changelogList updates about person field values
PersonsAPIGetPersonDealsGet /persons/{id}/dealsList deals associated with a person
PersonsAPIGetPersonFilesGet /persons/{id}/filesList files attached to a person
PersonsAPIGetPersonFollowersGet /persons/{id}/followersList followers of a person
PersonsAPIGetPersonMailMessagesGet /persons/{id}/mailMessagesList mail messages associated with a person
PersonsAPIGetPersonProductsGet /persons/{id}/productsList products associated with a person
PersonsAPIGetPersonUpdatesGet /persons/{id}/flowList updates about a person
PersonsAPIGetPersonUsersGet /persons/{id}/permittedUsersList permitted users
PersonsAPIGetPersonsGet /personsGet all persons
PersonsAPIGetPersonsCollectionGet /persons/collectionGet all persons (BETA)
PersonsAPIMergePersonsPut /persons/{id}/mergeMerge two persons
PersonsAPISearchPersonsGet /persons/searchSearch persons
PersonsAPIUpdatePersonPut /persons/{id}Update a person
PipelinesAPIAddPipelinePost /pipelinesAdd a new pipeline
PipelinesAPIDeletePipelineDelete /pipelines/{id}Delete a pipeline
PipelinesAPIGetPipelineGet /pipelines/{id}Get one pipeline
PipelinesAPIGetPipelineConversionStatisticsGet /pipelines/{id}/conversion_statisticsGet deals conversion rates in pipeline
PipelinesAPIGetPipelineDealsGet /pipelines/{id}/dealsGet deals in a pipeline
PipelinesAPIGetPipelineMovementStatisticsGet /pipelines/{id}/movement_statisticsGet deals movements in pipeline
PipelinesAPIGetPipelinesGet /pipelinesGet all pipelines
PipelinesAPIUpdatePipelinePut /pipelines/{id}Update a pipeline
ProductFieldsAPIAddProductFieldPost /productFieldsAdd a new product field
ProductFieldsAPIDeleteProductFieldDelete /productFields/{id}Delete a product field
ProductFieldsAPIDeleteProductFieldsDelete /productFieldsDelete multiple product fields in bulk
ProductFieldsAPIGetProductFieldGet /productFields/{id}Get one product field
ProductFieldsAPIGetProductFieldsGet /productFieldsGet all product fields
ProductFieldsAPIUpdateProductFieldPut /productFields/{id}Update a product field
ProductsAPIAddProductPost /productsAdd a product
ProductsAPIAddProductFollowerPost /products/{id}/followersAdd a follower to a product
ProductsAPIDeleteProductDelete /products/{id}Delete a product
ProductsAPIDeleteProductFollowerDelete /products/{id}/followers/{follower_id}Delete a follower from a product
ProductsAPIGetProductGet /products/{id}Get one product
ProductsAPIGetProductDealsGet /products/{id}/dealsGet deals where a product is attached to
ProductsAPIGetProductFilesGet /products/{id}/filesList files attached to a product
ProductsAPIGetProductFollowersGet /products/{id}/followersList followers of a product
ProductsAPIGetProductUsersGet /products/{id}/permittedUsersList permitted users
ProductsAPIGetProductsGet /productsGet all products
ProductsAPISearchProductsGet /products/searchSearch products
ProductsAPIUpdateProductPut /products/{id}Update a product
ProjectTemplatesAPIGetProjectTemplateGet /projectTemplates/{id}Get details of a template
ProjectTemplatesAPIGetProjectTemplatesGet /projectTemplatesGet all project templates
ProjectTemplatesAPIGetProjectsBoardGet /projects/boards/{id}Get details of a board
ProjectTemplatesAPIGetProjectsPhaseGet /projects/phases/{id}Get details of a phase
ProjectsAPIAddProjectPost /projectsAdd a project
ProjectsAPIArchiveProjectPost /projects/{id}/archiveArchive a project
ProjectsAPIDeleteProjectDelete /projects/{id}Delete a project
ProjectsAPIGetProjectGet /projects/{id}Get details of a project
ProjectsAPIGetProjectActivitiesGet /projects/{id}/activitiesReturns project activities
ProjectsAPIGetProjectGroupsGet /projects/{id}/groupsReturns project groups
ProjectsAPIGetProjectPlanGet /projects/{id}/planReturns project plan
ProjectsAPIGetProjectTasksGet /projects/{id}/tasksReturns project tasks
ProjectsAPIGetProjectsGet /projectsGet all projects
ProjectsAPIGetProjectsBoardsGet /projects/boardsGet all project boards
ProjectsAPIGetProjectsPhasesGet /projects/phasesGet project phases
ProjectsAPIPutProjectPlanActivityPut /projects/{id}/plan/activities/{activityId}Update activity in project plan
ProjectsAPIPutProjectPlanTaskPut /projects/{id}/plan/tasks/{taskId}Update task in project plan
ProjectsAPIUpdateProjectPut /projects/{id}Update a project
RecentsAPIGetRecentsGet /recentsGet recents
RolesAPIAddOrUpdateRoleSettingPost /roles/{id}/settingsAdd or update role setting
RolesAPIAddRolePost /rolesAdd a role
RolesAPIAddRoleAssignmentPost /roles/{id}/assignmentsAdd role assignment
RolesAPIDeleteRoleDelete /roles/{id}Delete a role
RolesAPIDeleteRoleAssignmentDelete /roles/{id}/assignmentsDelete a role assignment
RolesAPIGetRoleGet /roles/{id}Get one role
RolesAPIGetRoleAssignmentsGet /roles/{id}/assignmentsList role assignments
RolesAPIGetRolePipelinesGet /roles/{id}/pipelinesList pipeline visibility for a role
RolesAPIGetRoleSettingsGet /roles/{id}/settingsList role settings
RolesAPIGetRolesGet /rolesGet all roles
RolesAPIUpdateRolePut /roles/{id}Update role details
RolesAPIUpdateRolePipelinesPut /roles/{id}/pipelinesUpdate pipeline visibility for a role
StagesAPIAddStagePost /stagesAdd a new stage
StagesAPIDeleteStageDelete /stages/{id}Delete a stage
StagesAPIDeleteStagesDelete /stagesDelete multiple stages in bulk
StagesAPIGetStageGet /stages/{id}Get one stage
StagesAPIGetStageDealsGet /stages/{id}/dealsGet deals in a stage
StagesAPIGetStagesGet /stagesGet all stages
StagesAPIUpdateStagePut /stages/{id}Update stage details
SubscriptionsAPIAddRecurringSubscriptionPost /subscriptions/recurringAdd a recurring subscription
SubscriptionsAPIAddSubscriptionInstallmentPost /subscriptions/installmentAdd an installment subscription
SubscriptionsAPICancelRecurringSubscriptionPut /subscriptions/recurring/{id}/cancelCancel a recurring subscription
SubscriptionsAPIDeleteSubscriptionDelete /subscriptions/{id}Delete a subscription
SubscriptionsAPIFindSubscriptionByDealGet /subscriptions/find/{dealId}Find subscription by deal
SubscriptionsAPIGetSubscriptionGet /subscriptions/{id}Get details of a subscription
SubscriptionsAPIGetSubscriptionPaymentsGet /subscriptions/{id}/paymentsGet all payments of a subscription
SubscriptionsAPIUpdateRecurringSubscriptionPut /subscriptions/recurring/{id}Update a recurring subscription
SubscriptionsAPIUpdateSubscriptionInstallmentPut /subscriptions/installment/{id}Update an installment subscription
TasksAPIAddTaskPost /tasksAdd a task
TasksAPIDeleteTaskDelete /tasks/{id}Delete a task
TasksAPIGetTaskGet /tasks/{id}Get details of a task
TasksAPIGetTasksGet /tasksGet all tasks
TasksAPIUpdateTaskPut /tasks/{id}Update a task
UserConnectionsAPIGetUserConnectionsGet /userConnectionsGet all user connections
UserSettingsAPIGetUserSettingsGet /userSettingsList settings of an authorized user
UsersAPIAddUserPost /usersAdd a new user
UsersAPIFindUsersByNameGet /users/findFind users by name
UsersAPIGetCurrentUserGet /users/meGet current user data
UsersAPIGetUserGet /users/{id}Get one user
UsersAPIGetUserFollowersGet /users/{id}/followersList followers of a user
UsersAPIGetUserPermissionsGet /users/{id}/permissionsList user permissions
UsersAPIGetUserRoleAssignmentsGet /users/{id}/roleAssignmentsList role assignments
UsersAPIGetUserRoleSettingsGet /users/{id}/roleSettingsList user role settings
UsersAPIGetUsersGet /usersGet all users
UsersAPIUpdateUserPut /users/{id}Update user details
WebhooksAPIAddWebhookPost /webhooksCreate a new Webhook
WebhooksAPIDeleteWebhookDelete /webhooks/{id}Delete existing Webhook
WebhooksAPIGetWebhooksGet /webhooksGet all Webhooks

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

basic_authentication

  • Type: HTTP basic authentication

Example

auth := context.WithValue(context.Background(), openapi.ContextBasicAuth, openapi.BasicAuth{
	UserName: "username",
	Password: "password",
})
r, err := client.Service.Operation(auth, args)

api_key

  • Type: API key
  • API key parameter name: api_token
  • Location: URL query string

Note, each API key must be added to a map of map[string]APIKey where the key is: api_token and passed in as the auth context for each request.

Example

auth := context.WithValue(
		context.Background(),
		openapi.ContextAPIKeys,
		map[string]openapi.APIKey{
			"api_token": {Key: "API_KEY_STRING"},
		},
	)
r, err := client.Service.Operation(auth, args)

oauth2

  • Type: OAuth
  • Flow: accessCode
  • Authorization URL: https://oauth.pipedrive.com/oauth/authorize
  • Scopes:
  • base: Read settings of the authorized user and currencies in an account
  • deals:read: Read most of the data about deals and related entities - deal fields, products, followers, participants; all notes, files, filters, pipelines, stages, and statistics. Does not include access to activities (except the last and next activity related to a deal)
  • deals:full: Create, read, update and delete deals, its participants and followers; all files, notes, and filters. It also includes read access to deal fields, pipelines, stages, and statistics. Does not include access to activities (except the last and next activity related to a deal)
  • mail:read: Read mail threads and messages
  • mail:full: Read, update and delete mail threads. Also grants read access to mail messages
  • activities:read: Read activities, its fields and types; all files and filters
  • activities:full: Create, read, update and delete activities and all files and filters. Also includes read access to activity fields and types
  • contacts:read: Read the data about persons and organizations, their related fields and followers; also all notes, files, filters
  • contacts:full: Create, read, update and delete persons and organizations and their followers; all notes, files, filters. Also grants read access to contacts-related fields
  • products:read: Read products, its fields, files, followers and products connected to a deal
  • products:full: Create, read, update and delete products and its fields; add products to deals
  • projects:read: Read projects and its fields, tasks and project templates
  • projects:full: Create, read, update and delete projects and its fields; add projects templates and project related tasks
  • users:read: Read data about users (people with access to a Pipedrive account), their permissions, roles and followers
  • recents:read: Read all recent changes occurred in an account. Includes data about activities, activity types, deals, files, filters, notes, persons, organizations, pipelines, stages, products and users
  • search:read: Search across the account for deals, persons, organizations, files and products, and see details about the returned results
  • admin: Allows to do many things that an administrator can do in a Pipedrive company account - create, read, update and delete pipelines and its stages; deal, person and organization fields; activity types; users and permissions, etc. It also allows the app to create webhooks and fetch and delete webhooks that are created by the app
  • leads:read: Read data about leads and lead labels
  • leads:full: Create, read, update and delete leads and lead labels
  • phone-integration: Enables advanced call integration features like logging call duration and other metadata, and play call recordings inside Pipedrive
  • goals:read: Read data on all goals
  • goals:full: Create, read, update and delete goals
  • video-calls: Allows application to register as a video call integration provider and create conference links
  • messengers-integration: Allows application to register as a messengers integration provider and allows them to deliver incoming messages and their statuses

Example

auth := context.WithValue(context.Background(), openapi.ContextAccessToken, "ACCESSTOKENSTRING")
r, err := client.Service.Operation(auth, args)

Or via OAuth2 module to automatically refresh tokens and perform user authentication.

import "golang.org/x/oauth2"

/* Perform OAuth2 round trip request and obtain a token */

tokenSource := oauth2cfg.TokenSource(createContext(httpClient), &token)
auth := context.WithValue(oauth2.NoContext, openapi.ContextOAuth2, tokenSource)
r, err := client.Service.Operation(auth, args)

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

# Functions

CacheExpires helper function to determine remaining time before repeating a request.
IsNil checks if an input is nil.
NewActivityCollectionResponseObject instantiates a new ActivityCollectionResponseObject 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.
NewActivityCollectionResponseObjectWithDefaults instantiates a new ActivityCollectionResponseObject 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.
NewActivityDistributionDataWithAdditionalData instantiates a new ActivityDistributionDataWithAdditionalData 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.
NewActivityDistributionDataWithAdditionalDataAllOfActivityDistribution instantiates a new ActivityDistributionDataWithAdditionalDataAllOfActivityDistribution 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.
NewActivityDistributionDataWithAdditionalDataAllOfActivityDistributionASSIGNEDTOUSERID instantiates a new ActivityDistributionDataWithAdditionalDataAllOfActivityDistributionASSIGNEDTOUSERID 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.
NewActivityDistributionDataWithAdditionalDataAllOfActivityDistributionASSIGNEDTOUSERIDActivities instantiates a new ActivityDistributionDataWithAdditionalDataAllOfActivityDistributionASSIGNEDTOUSERIDActivities 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.
NewActivityDistributionDataWithAdditionalDataAllOfActivityDistributionASSIGNEDTOUSERIDActivitiesWithDefaults instantiates a new ActivityDistributionDataWithAdditionalDataAllOfActivityDistributionASSIGNEDTOUSERIDActivities 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.
NewActivityDistributionDataWithAdditionalDataAllOfActivityDistributionASSIGNEDTOUSERIDWithDefaults instantiates a new ActivityDistributionDataWithAdditionalDataAllOfActivityDistributionASSIGNEDTOUSERID 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.
NewActivityDistributionDataWithAdditionalDataAllOfActivityDistributionWithDefaults instantiates a new ActivityDistributionDataWithAdditionalDataAllOfActivityDistribution 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.
NewActivityDistributionDataWithAdditionalDataWithDefaults instantiates a new ActivityDistributionDataWithAdditionalData 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.
NewActivityResponseObject instantiates a new ActivityResponseObject 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.
NewActivityResponseObjectWithDefaults instantiates a new ActivityResponseObject 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.
NewAddActivityRequest instantiates a new AddActivityRequest 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.
NewAddActivityRequestWithDefaults instantiates a new AddActivityRequest 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.
NewAddActivityResponse200 instantiates a new AddActivityResponse200 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.
NewAddActivityResponse200AdditionalData instantiates a new AddActivityResponse200AdditionalData 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.
NewAddActivityResponse200AdditionalDataWithDefaults instantiates a new AddActivityResponse200AdditionalData 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.
NewAddActivityResponse200RelatedObjects instantiates a new AddActivityResponse200RelatedObjects 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.
NewAddActivityResponse200RelatedObjectsOrganization instantiates a new AddActivityResponse200RelatedObjectsOrganization 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.
NewAddActivityResponse200RelatedObjectsOrganizationORGANIZATIONID instantiates a new AddActivityResponse200RelatedObjectsOrganizationORGANIZATIONID 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.
NewAddActivityResponse200RelatedObjectsOrganizationORGANIZATIONIDWithDefaults instantiates a new AddActivityResponse200RelatedObjectsOrganizationORGANIZATIONID 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.
NewAddActivityResponse200RelatedObjectsOrganizationWithDefaults instantiates a new AddActivityResponse200RelatedObjectsOrganization 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.
NewAddActivityResponse200RelatedObjectsPerson instantiates a new AddActivityResponse200RelatedObjectsPerson 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.
NewAddActivityResponse200RelatedObjectsPersonPERSONID instantiates a new AddActivityResponse200RelatedObjectsPersonPERSONID 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.
NewAddActivityResponse200RelatedObjectsPersonPERSONIDWithDefaults instantiates a new AddActivityResponse200RelatedObjectsPersonPERSONID 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.
NewAddActivityResponse200RelatedObjectsPersonWithDefaults instantiates a new AddActivityResponse200RelatedObjectsPerson 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.
NewAddActivityResponse200RelatedObjectsWithDefaults instantiates a new AddActivityResponse200RelatedObjects 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.
NewAddActivityResponse200WithDefaults instantiates a new AddActivityResponse200 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.
NewAddActivityTypeRequest instantiates a new AddActivityTypeRequest 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.
NewAddActivityTypeRequestWithDefaults instantiates a new AddActivityTypeRequest 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.
NewAddCallLogRequest instantiates a new AddCallLogRequest 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.
NewAddCallLogRequestWithDefaults instantiates a new AddCallLogRequest 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.
NewAddChannel200Response instantiates a new AddChannel200Response 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.
NewAddChannel200ResponseData instantiates a new AddChannel200ResponseData 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.
NewAddChannel200ResponseDataWithDefaults instantiates a new AddChannel200ResponseData 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.
NewAddChannel200ResponseWithDefaults instantiates a new AddChannel200Response 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.
NewAddChannel400Response instantiates a new AddChannel400Response 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.
NewAddChannel400ResponseAdditionalData instantiates a new AddChannel400ResponseAdditionalData 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.
NewAddChannel400ResponseAdditionalDataWithDefaults instantiates a new AddChannel400ResponseAdditionalData 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.
NewAddChannel400ResponseWithDefaults instantiates a new AddChannel400Response 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.
NewAddChannel403Response instantiates a new AddChannel403Response 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.
NewAddChannel403ResponseAdditionalData instantiates a new AddChannel403ResponseAdditionalData 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.
NewAddChannel403ResponseAdditionalDataWithDefaults instantiates a new AddChannel403ResponseAdditionalData 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.
NewAddChannel403ResponseWithDefaults instantiates a new AddChannel403Response 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.
NewAddChannelRequest instantiates a new AddChannelRequest 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.
NewAddChannelRequestWithDefaults instantiates a new AddChannelRequest 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.
NewAddDealFollowerRequest instantiates a new AddDealFollowerRequest 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.
NewAddDealFollowerRequestWithDefaults instantiates a new AddDealFollowerRequest 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.
NewAddDealFollowerResponse200 instantiates a new AddDealFollowerResponse200 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.
NewAddDealFollowerResponse200Data instantiates a new AddDealFollowerResponse200Data 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.
NewAddDealFollowerResponse200DataWithDefaults instantiates a new AddDealFollowerResponse200Data 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.
NewAddDealFollowerResponse200WithDefaults instantiates a new AddDealFollowerResponse200 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.
NewAddDealParticipantRequest instantiates a new AddDealParticipantRequest 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.
NewAddDealParticipantRequestWithDefaults instantiates a new AddDealParticipantRequest 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.
NewAddDealParticipantResponse200 instantiates a new AddDealParticipantResponse200 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.
NewAddDealParticipantResponse200Data instantiates a new AddDealParticipantResponse200Data 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.
NewAddDealParticipantResponse200DataWithDefaults instantiates a new AddDealParticipantResponse200Data 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.
NewAddDealParticipantResponse200RelatedObjects instantiates a new AddDealParticipantResponse200RelatedObjects 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.
NewAddDealParticipantResponse200RelatedObjectsWithDefaults instantiates a new AddDealParticipantResponse200RelatedObjects 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.
NewAddDealParticipantResponse200WithDefaults instantiates a new AddDealParticipantResponse200 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.
NewAddDealProductRequest instantiates a new AddDealProductRequest 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.
NewAddDealProductRequestWithDefaults instantiates a new AddDealProductRequest 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.
NewAddDealRequest instantiates a new AddDealRequest 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.
NewAddDealRequestWithDefaults instantiates a new AddDealRequest 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.
NewAddFileAndLinkItResponse200 instantiates a new AddFileAndLinkItResponse200 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.
NewAddFileAndLinkItResponse200WithDefaults instantiates a new AddFileAndLinkItResponse200 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.
NewAddFileResponse200 instantiates a new AddFileResponse200 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.
NewAddFileResponse200WithDefaults instantiates a new AddFileResponse200 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.
NewAddFilterRequest instantiates a new AddFilterRequest 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.
NewAddFilterRequestWithDefaults instantiates a new AddFilterRequest 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.
NewAddGoalRequest instantiates a new AddGoalRequest 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.
NewAddGoalRequestWithDefaults instantiates a new AddGoalRequest 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.
NewAddLeadLabelRequest instantiates a new AddLeadLabelRequest 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.
NewAddLeadLabelRequestWithDefaults instantiates a new AddLeadLabelRequest 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.
NewAddLeadRequest instantiates a new AddLeadRequest 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.
NewAddLeadRequestWithDefaults instantiates a new AddLeadRequest 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.
NewAddNoteRequest instantiates a new AddNoteRequest 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.
NewAddNoteRequestWithDefaults instantiates a new AddNoteRequest 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.
NewAddOrganizationFollowerRequest instantiates a new AddOrganizationFollowerRequest 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.
NewAddOrganizationFollowerRequestWithDefaults instantiates a new AddOrganizationFollowerRequest 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.
NewAddOrganizationFollowerResponse200 instantiates a new AddOrganizationFollowerResponse200 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.
NewAddOrganizationFollowerResponse200WithDefaults instantiates a new AddOrganizationFollowerResponse200 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.
NewAddOrganizationRelationshipRequest instantiates a new AddOrganizationRelationshipRequest 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.
NewAddOrganizationRelationshipRequestWithDefaults instantiates a new AddOrganizationRelationshipRequest 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.
NewAddOrganizationRelationshipResponse200 instantiates a new AddOrganizationRelationshipResponse200 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.
NewAddOrganizationRelationshipResponse200AllOfData instantiates a new AddOrganizationRelationshipResponse200AllOfData 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.
NewAddOrganizationRelationshipResponse200AllOfDataWithDefaults instantiates a new AddOrganizationRelationshipResponse200AllOfData 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.
NewAddOrganizationRelationshipResponse200WithDefaults instantiates a new AddOrganizationRelationshipResponse200 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.
NewAddOrganizationRequest instantiates a new AddOrganizationRequest 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.
NewAddOrganizationRequestWithDefaults instantiates a new AddOrganizationRequest 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.
NewAddOrganizationResponse200 instantiates a new AddOrganizationResponse200 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.
NewAddOrganizationResponse200WithDefaults instantiates a new AddOrganizationResponse200 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.
NewAddOrUpdateGoalResponse200 instantiates a new AddOrUpdateGoalResponse200 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.
NewAddOrUpdateGoalResponse200Data instantiates a new AddOrUpdateGoalResponse200Data 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.
NewAddOrUpdateGoalResponse200DataGoal instantiates a new AddOrUpdateGoalResponse200DataGoal 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.
NewAddOrUpdateGoalResponse200DataGoalAssignee instantiates a new AddOrUpdateGoalResponse200DataGoalAssignee 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.
NewAddOrUpdateGoalResponse200DataGoalAssigneeWithDefaults instantiates a new AddOrUpdateGoalResponse200DataGoalAssignee 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.
NewAddOrUpdateGoalResponse200DataGoalDuration instantiates a new AddOrUpdateGoalResponse200DataGoalDuration 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.
NewAddOrUpdateGoalResponse200DataGoalDurationWithDefaults instantiates a new AddOrUpdateGoalResponse200DataGoalDuration 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.
NewAddOrUpdateGoalResponse200DataGoalExpectedOutcome instantiates a new AddOrUpdateGoalResponse200DataGoalExpectedOutcome 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.
NewAddOrUpdateGoalResponse200DataGoalExpectedOutcomeWithDefaults instantiates a new AddOrUpdateGoalResponse200DataGoalExpectedOutcome 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.
NewAddOrUpdateGoalResponse200DataGoalType instantiates a new AddOrUpdateGoalResponse200DataGoalType 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.
NewAddOrUpdateGoalResponse200DataGoalTypeParams instantiates a new AddOrUpdateGoalResponse200DataGoalTypeParams 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.
NewAddOrUpdateGoalResponse200DataGoalTypeParamsWithDefaults instantiates a new AddOrUpdateGoalResponse200DataGoalTypeParams 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.
NewAddOrUpdateGoalResponse200DataGoalTypeWithDefaults instantiates a new AddOrUpdateGoalResponse200DataGoalType 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.
NewAddOrUpdateGoalResponse200DataGoalWithDefaults instantiates a new AddOrUpdateGoalResponse200DataGoal 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.
NewAddOrUpdateGoalResponse200DataWithDefaults instantiates a new AddOrUpdateGoalResponse200Data 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.
NewAddOrUpdateGoalResponse200WithDefaults instantiates a new AddOrUpdateGoalResponse200 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.
NewAddOrUpdateLeadLabelResponse200 instantiates a new AddOrUpdateLeadLabelResponse200 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.
NewAddOrUpdateLeadLabelResponse200WithDefaults instantiates a new AddOrUpdateLeadLabelResponse200 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.
NewAddOrUpdateRoleSettingRequest instantiates a new AddOrUpdateRoleSettingRequest 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.
NewAddOrUpdateRoleSettingRequestWithDefaults instantiates a new AddOrUpdateRoleSettingRequest 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.
NewAddOrUpdateRoleSettingResponse200 instantiates a new AddOrUpdateRoleSettingResponse200 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.
NewAddOrUpdateRoleSettingResponse200AllOfData instantiates a new AddOrUpdateRoleSettingResponse200AllOfData 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.
NewAddOrUpdateRoleSettingResponse200AllOfDataWithDefaults instantiates a new AddOrUpdateRoleSettingResponse200AllOfData 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.
NewAddOrUpdateRoleSettingResponse200WithDefaults instantiates a new AddOrUpdateRoleSettingResponse200 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.
NewAddPersonFollowerRequest instantiates a new AddPersonFollowerRequest 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.
NewAddPersonFollowerRequestWithDefaults instantiates a new AddPersonFollowerRequest 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.
NewAddPersonFollowerResponse200 instantiates a new AddPersonFollowerResponse200 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.
NewAddPersonFollowerResponse200AllOfData instantiates a new AddPersonFollowerResponse200AllOfData 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.
NewAddPersonFollowerResponse200AllOfDataWithDefaults instantiates a new AddPersonFollowerResponse200AllOfData 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.
NewAddPersonFollowerResponse200WithDefaults instantiates a new AddPersonFollowerResponse200 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.
NewAddPersonPictureResponse200 instantiates a new AddPersonPictureResponse200 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.
NewAddPersonPictureResponse200WithDefaults instantiates a new AddPersonPictureResponse200 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.
NewAddPersonRequest instantiates a new AddPersonRequest 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.
NewAddPersonRequestWithDefaults instantiates a new AddPersonRequest 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.
NewAddPersonResponse200 instantiates a new AddPersonResponse200 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.
NewAddPersonResponse200WithDefaults instantiates a new AddPersonResponse200 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.
NewAddPipelineResponse200 instantiates a new AddPipelineResponse200 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.
NewAddPipelineResponse200AllOfData instantiates a new AddPipelineResponse200AllOfData 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.
NewAddPipelineResponse200AllOfDataWithDefaults instantiates a new AddPipelineResponse200AllOfData 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.
NewAddPipelineResponse200WithDefaults instantiates a new AddPipelineResponse200 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.
NewAddProductFieldRequest instantiates a new AddProductFieldRequest 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.
NewAddProductFieldRequestWithDefaults instantiates a new AddProductFieldRequest 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.
NewAddProductFollowerRequest instantiates a new AddProductFollowerRequest 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.
NewAddProductFollowerRequestWithDefaults instantiates a new AddProductFollowerRequest 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.
NewAddProductRequest instantiates a new AddProductRequest 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.
NewAddProductRequest1 instantiates a new AddProductRequest1 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.
NewAddProductRequest1WithDefaults instantiates a new AddProductRequest1 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.
NewAddProductRequestWithDefaults instantiates a new AddProductRequest 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.
NewAddProjectRequest instantiates a new AddProjectRequest 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.
NewAddProjectRequestWithDefaults instantiates a new AddProjectRequest 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.
NewAddProjectResponse201 instantiates a new AddProjectResponse201 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.
NewAddProjectResponse201WithDefaults instantiates a new AddProjectResponse201 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.
NewAddRecurringSubscriptionRequest instantiates a new AddRecurringSubscriptionRequest 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.
NewAddRecurringSubscriptionRequestWithDefaults instantiates a new AddRecurringSubscriptionRequest 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.
NewAddRoleAssignmentRequest instantiates a new AddRoleAssignmentRequest 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.
NewAddRoleAssignmentRequestWithDefaults instantiates a new AddRoleAssignmentRequest 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.
NewAddRoleAssignmentResponse200 instantiates a new AddRoleAssignmentResponse200 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.
NewAddRoleAssignmentResponse200AllOfData instantiates a new AddRoleAssignmentResponse200AllOfData 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.
NewAddRoleAssignmentResponse200AllOfDataWithDefaults instantiates a new AddRoleAssignmentResponse200AllOfData 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.
NewAddRoleAssignmentResponse200WithDefaults instantiates a new AddRoleAssignmentResponse200 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.
NewAddRoleRequest instantiates a new AddRoleRequest 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.
NewAddRoleRequestWithDefaults instantiates a new AddRoleRequest 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.
NewAddRoleResponse200 instantiates a new AddRoleResponse200 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.
NewAddRoleResponse200AllOfData instantiates a new AddRoleResponse200AllOfData 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.
NewAddRoleResponse200AllOfDataWithDefaults instantiates a new AddRoleResponse200AllOfData 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.
NewAddRoleResponse200WithDefaults instantiates a new AddRoleResponse200 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.
NewAddStageRequest instantiates a new AddStageRequest 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.
NewAddStageRequestWithDefaults instantiates a new AddStageRequest 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.
NewAddSubscriptionInstallmentRequest instantiates a new AddSubscriptionInstallmentRequest 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.
NewAddSubscriptionInstallmentRequestWithDefaults instantiates a new AddSubscriptionInstallmentRequest 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.
NewAddTaskRequest instantiates a new AddTaskRequest 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.
NewAddTaskRequestWithDefaults instantiates a new AddTaskRequest 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.
NewAddTaskResponse201 instantiates a new AddTaskResponse201 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.
NewAddTaskResponse201WithDefaults instantiates a new AddTaskResponse201 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.
NewAddTeamRequest instantiates a new AddTeamRequest 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.
NewAddTeamRequestWithDefaults instantiates a new AddTeamRequest 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.
NewAddTeamUserRequest instantiates a new AddTeamUserRequest 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.
NewAddTeamUserRequestWithDefaults instantiates a new AddTeamUserRequest 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.
NewAddUserProviderLinkRequest instantiates a new AddUserProviderLinkRequest 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.
NewAddUserProviderLinkRequestWithDefaults instantiates a new AddUserProviderLinkRequest 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.
NewAddUserRequest instantiates a new AddUserRequest 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.
NewAddUserRequestAccessInner instantiates a new AddUserRequestAccessInner 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.
NewAddUserRequestAccessInnerWithDefaults instantiates a new AddUserRequestAccessInner 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.
NewAddUserRequestWithDefaults instantiates a new AddUserRequest 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.
NewAddWebhookRequest instantiates a new AddWebhookRequest 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.
NewAddWebhookRequestWithDefaults instantiates a new AddWebhookRequest 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.
NewAPIClient creates a new API client.
NewAPIResponse returns a new APIResponse object.
NewAPIResponseWithError returns a new APIResponse object with the provided error message.
NewBaseMailThread instantiates a new BaseMailThread 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.
NewBaseMailThread1 instantiates a new BaseMailThread1 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.
NewBaseMailThread1WithDefaults instantiates a new BaseMailThread1 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.
NewBaseMailThreadAllOfParties instantiates a new BaseMailThreadAllOfParties 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.
NewBaseMailThreadAllOfPartiesToInner instantiates a new BaseMailThreadAllOfPartiesToInner 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.
NewBaseMailThreadAllOfPartiesToInnerWithDefaults instantiates a new BaseMailThreadAllOfPartiesToInner 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.
NewBaseMailThreadAllOfPartiesWithDefaults instantiates a new BaseMailThreadAllOfParties 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.
NewBaseMailThreadWithDefaults instantiates a new BaseMailThread 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.
NewBaseOrganizationItem instantiates a new BaseOrganizationItem 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.
NewBaseOrganizationItemAllOfPictureId instantiates a new BaseOrganizationItemAllOfPictureId 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.
NewBaseOrganizationItemAllOfPictureIdWithDefaults instantiates a new BaseOrganizationItemAllOfPictureId 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.
NewBaseOrganizationItemWithDefaults instantiates a new BaseOrganizationItem 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.
NewBaseOrganizationItemWithEditNameFlag instantiates a new BaseOrganizationItemWithEditNameFlag 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.
NewBaseOrganizationItemWithEditNameFlagWithDefaults instantiates a new BaseOrganizationItemWithEditNameFlag 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.
NewBasePipelineWithSelectedFlag instantiates a new BasePipelineWithSelectedFlag 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.
NewBasePipelineWithSelectedFlagWithDefaults instantiates a new BasePipelineWithSelectedFlag 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.
NewBaseResponse instantiates a new BaseResponse 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.
NewBaseResponse200 instantiates a new BaseResponse200 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.
NewBaseResponse200WithDefaults instantiates a new BaseResponse200 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.
NewBaseResponseWithDefaults instantiates a new BaseResponse 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.
NewBaseRoleRequest instantiates a new BaseRoleRequest 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.
NewBaseRoleRequestWithDefaults instantiates a new BaseRoleRequest 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.
NewBaseTeam instantiates a new BaseTeam 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.
NewBaseTeamWithDefaults instantiates a new BaseTeam 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.
NewBasicGoalRequest instantiates a new BasicGoalRequest 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.
NewBasicGoalRequestWithDefaults instantiates a new BasicGoalRequest 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.
NewBasicPersonRequestEmailInner instantiates a new BasicPersonRequestEmailInner 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.
NewBasicPersonRequestEmailInnerWithDefaults instantiates a new BasicPersonRequestEmailInner 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.
NewCallLogResponse200 instantiates a new CallLogResponse200 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.
NewCallLogResponse200WithDefaults instantiates a new CallLogResponse200 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.
NewCallLogResponse400 instantiates a new CallLogResponse400 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.
NewCallLogResponse400WithDefaults instantiates a new CallLogResponse400 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.
NewCallLogResponse403 instantiates a new CallLogResponse403 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.
NewCallLogResponse403WithDefaults instantiates a new CallLogResponse403 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.
NewCallLogResponse404 instantiates a new CallLogResponse404 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.
NewCallLogResponse404WithDefaults instantiates a new CallLogResponse404 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.
NewCallLogResponse409 instantiates a new CallLogResponse409 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.
NewCallLogResponse409WithDefaults instantiates a new CallLogResponse409 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.
NewCallLogResponse410 instantiates a new CallLogResponse410 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.
NewCallLogResponse410WithDefaults instantiates a new CallLogResponse410 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.
NewCallLogResponse500 instantiates a new CallLogResponse500 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.
NewCallLogResponse500WithDefaults instantiates a new CallLogResponse500 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.
NewCallLogsResponse instantiates a new CallLogsResponse 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.
NewCallLogsResponseAdditionalData instantiates a new CallLogsResponseAdditionalData 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.
NewCallLogsResponseAdditionalDataWithDefaults instantiates a new CallLogsResponseAdditionalData 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.
NewCallLogsResponseWithDefaults instantiates a new CallLogsResponse 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.
NewCancelRecurringSubscriptionRequest instantiates a new CancelRecurringSubscriptionRequest 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.
NewCancelRecurringSubscriptionRequestWithDefaults instantiates a new CancelRecurringSubscriptionRequest 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.
NewCommentPostPutObject instantiates a new CommentPostPutObject 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.
NewCommentPostPutObjectWithDefaults instantiates a new CommentPostPutObject 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.
NewConfiguration returns a new Configuration object.
NewCreateFieldRequest instantiates a new CreateFieldRequest 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.
NewCreateFieldRequestWithDefaults instantiates a new CreateFieldRequest 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.
NewCreateUpdateDeleteActivityTypeResponse200 instantiates a new CreateUpdateDeleteActivityTypeResponse200 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.
NewCreateUpdateDeleteActivityTypeResponse200WithDefaults instantiates a new CreateUpdateDeleteActivityTypeResponse200 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.
NewDealCollectionResponseObject instantiates a new DealCollectionResponseObject 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.
NewDealCollectionResponseObjectWithDefaults instantiates a new DealCollectionResponseObject 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.
NewDealNonStrict instantiates a new DealNonStrict 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.
NewDealNonStrictAllOfCreatorUserId instantiates a new DealNonStrictAllOfCreatorUserId 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.
NewDealNonStrictAllOfCreatorUserIdWithDefaults instantiates a new DealNonStrictAllOfCreatorUserId 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.
NewDealNonStrictWithDefaults instantiates a new DealNonStrict 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.
NewDealNonStrictWithDetails instantiates a new DealNonStrictWithDetails 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.
NewDealNonStrictWithDetailsAllOfAge instantiates a new DealNonStrictWithDetailsAllOfAge 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.
NewDealNonStrictWithDetailsAllOfAgeWithDefaults instantiates a new DealNonStrictWithDetailsAllOfAge 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.
NewDealNonStrictWithDetailsAllOfAverageTimeToWon instantiates a new DealNonStrictWithDetailsAllOfAverageTimeToWon 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.
NewDealNonStrictWithDetailsAllOfAverageTimeToWonWithDefaults instantiates a new DealNonStrictWithDetailsAllOfAverageTimeToWon 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.
NewDealNonStrictWithDetailsAllOfStayInPipelineStages instantiates a new DealNonStrictWithDetailsAllOfStayInPipelineStages 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.
NewDealNonStrictWithDetailsAllOfStayInPipelineStagesWithDefaults instantiates a new DealNonStrictWithDetailsAllOfStayInPipelineStages 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.
NewDealNonStrictWithDetailsWithDefaults instantiates a new DealNonStrictWithDetails 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.
NewDealOrganizationDataWithId instantiates a new DealOrganizationDataWithId 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.
NewDealOrganizationDataWithIdWithDefaults instantiates a new DealOrganizationDataWithId 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.
NewDealPersonDataWithId instantiates a new DealPersonDataWithId 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.
NewDealPersonDataWithIdAllOfEmailInner instantiates a new DealPersonDataWithIdAllOfEmailInner 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.
NewDealPersonDataWithIdAllOfEmailInnerWithDefaults instantiates a new DealPersonDataWithIdAllOfEmailInner 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.
NewDealPersonDataWithIdAllOfPhoneInner instantiates a new DealPersonDataWithIdAllOfPhoneInner 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.
NewDealPersonDataWithIdAllOfPhoneInnerWithDefaults instantiates a new DealPersonDataWithIdAllOfPhoneInner 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.
NewDealPersonDataWithIdWithDefaults instantiates a new DealPersonDataWithId 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.
NewDealResponse200 instantiates a new DealResponse200 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.
NewDealResponse200WithDefaults instantiates a new DealResponse200 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.
NewDealStrict instantiates a new DealStrict 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.
NewDealStrictWithDefaults instantiates a new DealStrict 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.
NewDealUserDataWithId instantiates a new DealUserDataWithId 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.
NewDealUserDataWithIdWithDefaults instantiates a new DealUserDataWithId 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.
NewDeleteActivitiesResponse200 instantiates a new DeleteActivitiesResponse200 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.
NewDeleteActivitiesResponse200Data instantiates a new DeleteActivitiesResponse200Data 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.
NewDeleteActivitiesResponse200DataWithDefaults instantiates a new DeleteActivitiesResponse200Data 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.
NewDeleteActivitiesResponse200WithDefaults instantiates a new DeleteActivitiesResponse200 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.
NewDeleteActivityResponse200 instantiates a new DeleteActivityResponse200 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.
NewDeleteActivityResponse200Data instantiates a new DeleteActivityResponse200Data 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.
NewDeleteActivityResponse200DataWithDefaults instantiates a new DeleteActivityResponse200Data 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.
NewDeleteActivityResponse200WithDefaults instantiates a new DeleteActivityResponse200 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.
NewDeleteActivityTypesResponse200 instantiates a new DeleteActivityTypesResponse200 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.
NewDeleteActivityTypesResponse200AllOfData instantiates a new DeleteActivityTypesResponse200AllOfData 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.
NewDeleteActivityTypesResponse200AllOfDataWithDefaults instantiates a new DeleteActivityTypesResponse200AllOfData 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.
NewDeleteActivityTypesResponse200WithDefaults instantiates a new DeleteActivityTypesResponse200 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.
NewDeleteChannel200Response instantiates a new DeleteChannel200Response 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.
NewDeleteChannel200ResponseWithDefaults instantiates a new DeleteChannel200Response 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.
NewDeleteCommentResponse200 instantiates a new DeleteCommentResponse200 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.
NewDeleteCommentResponse200WithDefaults instantiates a new DeleteCommentResponse200 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.
NewDeleteConversation403Response instantiates a new DeleteConversation403Response 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.
NewDeleteConversation403ResponseAdditionalData instantiates a new DeleteConversation403ResponseAdditionalData 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.
NewDeleteConversation403ResponseAdditionalDataWithDefaults instantiates a new DeleteConversation403ResponseAdditionalData 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.
NewDeleteConversation403ResponseWithDefaults instantiates a new DeleteConversation403Response 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.
NewDeleteConversation404Response instantiates a new DeleteConversation404Response 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.
NewDeleteConversation404ResponseAdditionalData instantiates a new DeleteConversation404ResponseAdditionalData 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.
NewDeleteConversation404ResponseAdditionalDataWithDefaults instantiates a new DeleteConversation404ResponseAdditionalData 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.
NewDeleteConversation404ResponseWithDefaults instantiates a new DeleteConversation404Response 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.
NewDeleteDealFollowerResponse200 instantiates a new DeleteDealFollowerResponse200 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.
NewDeleteDealFollowerResponse200Data instantiates a new DeleteDealFollowerResponse200Data 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.
NewDeleteDealFollowerResponse200DataWithDefaults instantiates a new DeleteDealFollowerResponse200Data 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.
NewDeleteDealFollowerResponse200WithDefaults instantiates a new DeleteDealFollowerResponse200 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.
NewDeleteDealParticipantResponse200 instantiates a new DeleteDealParticipantResponse200 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.
NewDeleteDealParticipantResponse200Data instantiates a new DeleteDealParticipantResponse200Data 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.
NewDeleteDealParticipantResponse200DataWithDefaults instantiates a new DeleteDealParticipantResponse200Data 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.
NewDeleteDealParticipantResponse200WithDefaults instantiates a new DeleteDealParticipantResponse200 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.
NewDeleteDealProductResponse200 instantiates a new DeleteDealProductResponse200 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.
NewDeleteDealProductResponse200Data instantiates a new DeleteDealProductResponse200Data 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.
NewDeleteDealProductResponse200DataWithDefaults instantiates a new DeleteDealProductResponse200Data 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.
NewDeleteDealProductResponse200WithDefaults instantiates a new DeleteDealProductResponse200 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.
NewDeleteDealResponse200 instantiates a new DeleteDealResponse200 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.
NewDeleteDealResponse200Data instantiates a new DeleteDealResponse200Data 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.
NewDeleteDealResponse200DataWithDefaults instantiates a new DeleteDealResponse200Data 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.
NewDeleteDealResponse200WithDefaults instantiates a new DeleteDealResponse200 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.
NewDeleteDealsResponse200 instantiates a new DeleteDealsResponse200 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.
NewDeleteDealsResponse200Data instantiates a new DeleteDealsResponse200Data 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.
NewDeleteDealsResponse200DataWithDefaults instantiates a new DeleteDealsResponse200Data 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.
NewDeleteDealsResponse200WithDefaults instantiates a new DeleteDealsResponse200 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.
NewDeleteFieldResponse200 instantiates a new DeleteFieldResponse200 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.
NewDeleteFieldResponse200AllOfData instantiates a new DeleteFieldResponse200AllOfData 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.
NewDeleteFieldResponse200AllOfDataWithDefaults instantiates a new DeleteFieldResponse200AllOfData 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.
NewDeleteFieldResponse200WithDefaults instantiates a new DeleteFieldResponse200 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.
NewDeleteFieldsResponse200 instantiates a new DeleteFieldsResponse200 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.
NewDeleteFieldsResponse200AllOfData instantiates a new DeleteFieldsResponse200AllOfData 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.
NewDeleteFieldsResponse200AllOfDataWithDefaults instantiates a new DeleteFieldsResponse200AllOfData 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.
NewDeleteFieldsResponse200WithDefaults instantiates a new DeleteFieldsResponse200 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.
NewDeleteFileResponse200 instantiates a new DeleteFileResponse200 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.
NewDeleteFileResponse200Data instantiates a new DeleteFileResponse200Data 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.
NewDeleteFileResponse200DataWithDefaults instantiates a new DeleteFileResponse200Data 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.
NewDeleteFileResponse200WithDefaults instantiates a new DeleteFileResponse200 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.
NewDeleteFilterResponse200 instantiates a new DeleteFilterResponse200 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.
NewDeleteFilterResponse200AllOfData instantiates a new DeleteFilterResponse200AllOfData 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.
NewDeleteFilterResponse200AllOfDataWithDefaults instantiates a new DeleteFilterResponse200AllOfData 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.
NewDeleteFilterResponse200WithDefaults instantiates a new DeleteFilterResponse200 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.
NewDeleteFiltersResponse200 instantiates a new DeleteFiltersResponse200 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.
NewDeleteFiltersResponse200AllOfData instantiates a new DeleteFiltersResponse200AllOfData 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.
NewDeleteFiltersResponse200AllOfDataWithDefaults instantiates a new DeleteFiltersResponse200AllOfData 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.
NewDeleteFiltersResponse200WithDefaults instantiates a new DeleteFiltersResponse200 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.
NewDeleteGoalResponse200 instantiates a new DeleteGoalResponse200 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.
NewDeleteGoalResponse200WithDefaults instantiates a new DeleteGoalResponse200 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.
NewDeleteMailThreadResponse200 instantiates a new DeleteMailThreadResponse200 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.
NewDeleteMailThreadResponse200AllOfData instantiates a new DeleteMailThreadResponse200AllOfData 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.
NewDeleteMailThreadResponse200AllOfDataWithDefaults instantiates a new DeleteMailThreadResponse200AllOfData 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.
NewDeleteMailThreadResponse200WithDefaults instantiates a new DeleteMailThreadResponse200 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.
NewDeleteNoteResponse200 instantiates a new DeleteNoteResponse200 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.
NewDeleteNoteResponse200WithDefaults instantiates a new DeleteNoteResponse200 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.
NewDeleteOrganizationFollowerResponse200 instantiates a new DeleteOrganizationFollowerResponse200 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.
NewDeleteOrganizationFollowerResponse200Data instantiates a new DeleteOrganizationFollowerResponse200Data 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.
NewDeleteOrganizationFollowerResponse200DataWithDefaults instantiates a new DeleteOrganizationFollowerResponse200Data 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.
NewDeleteOrganizationFollowerResponse200WithDefaults instantiates a new DeleteOrganizationFollowerResponse200 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.
NewDeleteOrganizationRelationshipResponse200 instantiates a new DeleteOrganizationRelationshipResponse200 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.
NewDeleteOrganizationRelationshipResponse200AllOfData instantiates a new DeleteOrganizationRelationshipResponse200AllOfData 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.
NewDeleteOrganizationRelationshipResponse200AllOfDataWithDefaults instantiates a new DeleteOrganizationRelationshipResponse200AllOfData 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.
NewDeleteOrganizationRelationshipResponse200WithDefaults instantiates a new DeleteOrganizationRelationshipResponse200 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.
NewDeleteOrganizationResponse200 instantiates a new DeleteOrganizationResponse200 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.
NewDeleteOrganizationResponse200Data instantiates a new DeleteOrganizationResponse200Data 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.
NewDeleteOrganizationResponse200DataWithDefaults instantiates a new DeleteOrganizationResponse200Data 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.
NewDeleteOrganizationResponse200WithDefaults instantiates a new DeleteOrganizationResponse200 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.
NewDeleteOrganizationsResponse200 instantiates a new DeleteOrganizationsResponse200 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.
NewDeleteOrganizationsResponse200Data instantiates a new DeleteOrganizationsResponse200Data 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.
NewDeleteOrganizationsResponse200DataWithDefaults instantiates a new DeleteOrganizationsResponse200Data 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.
NewDeleteOrganizationsResponse200WithDefaults instantiates a new DeleteOrganizationsResponse200 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.
NewDeletePersonResponse200 instantiates a new DeletePersonResponse200 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.
NewDeletePersonResponse200AllOfData instantiates a new DeletePersonResponse200AllOfData 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.
NewDeletePersonResponse200AllOfDataWithDefaults instantiates a new DeletePersonResponse200AllOfData 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.
NewDeletePersonResponse200WithDefaults instantiates a new DeletePersonResponse200 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.
NewDeletePersonsResponse200 instantiates a new DeletePersonsResponse200 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.
NewDeletePersonsResponse200AllOfData instantiates a new DeletePersonsResponse200AllOfData 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.
NewDeletePersonsResponse200AllOfDataWithDefaults instantiates a new DeletePersonsResponse200AllOfData 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.
NewDeletePersonsResponse200WithDefaults instantiates a new DeletePersonsResponse200 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.
NewDeletePipelineResponse200 instantiates a new DeletePipelineResponse200 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.
NewDeletePipelineResponse200Data instantiates a new DeletePipelineResponse200Data 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.
NewDeletePipelineResponse200DataWithDefaults instantiates a new DeletePipelineResponse200Data 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.
NewDeletePipelineResponse200WithDefaults instantiates a new DeletePipelineResponse200 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.
NewDeleteProductFieldResponse200 instantiates a new DeleteProductFieldResponse200 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.
NewDeleteProductFieldResponse200WithDefaults instantiates a new DeleteProductFieldResponse200 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.
NewDeleteProductFieldsResponse200 instantiates a new DeleteProductFieldsResponse200 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.
NewDeleteProductFieldsResponse200Data instantiates a new DeleteProductFieldsResponse200Data 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.
NewDeleteProductFieldsResponse200DataWithDefaults instantiates a new DeleteProductFieldsResponse200Data 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.
NewDeleteProductFieldsResponse200WithDefaults instantiates a new DeleteProductFieldsResponse200 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.
NewDeleteProductFollowerResponse200 instantiates a new DeleteProductFollowerResponse200 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.
NewDeleteProductFollowerResponse200WithDefaults instantiates a new DeleteProductFollowerResponse200 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.
NewDeleteProductResponse200 instantiates a new DeleteProductResponse200 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.
NewDeleteProductResponse200Data instantiates a new DeleteProductResponse200Data 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.
NewDeleteProductResponse200DataWithDefaults instantiates a new DeleteProductResponse200Data 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.
NewDeleteProductResponse200WithDefaults instantiates a new DeleteProductResponse200 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.
NewDeleteProject instantiates a new DeleteProject 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.
NewDeleteProjectData instantiates a new DeleteProjectData 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.
NewDeleteProjectDataWithDefaults instantiates a new DeleteProjectData 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.
NewDeleteProjectResponse200 instantiates a new DeleteProjectResponse200 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.
NewDeleteProjectResponse200WithDefaults instantiates a new DeleteProjectResponse200 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.
NewDeleteProjectWithDefaults instantiates a new DeleteProject 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.
NewDeleteRoleAssignmentRequest instantiates a new DeleteRoleAssignmentRequest 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.
NewDeleteRoleAssignmentRequestWithDefaults instantiates a new DeleteRoleAssignmentRequest 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.
NewDeleteRoleAssignmentResponse200 instantiates a new DeleteRoleAssignmentResponse200 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.
NewDeleteRoleAssignmentResponse200WithDefaults instantiates a new DeleteRoleAssignmentResponse200 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.
NewDeleteRoleResponse200 instantiates a new DeleteRoleResponse200 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.
NewDeleteRoleResponse200WithDefaults instantiates a new DeleteRoleResponse200 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.
NewDeleteStageResponse200 instantiates a new DeleteStageResponse200 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.
NewDeleteStageResponse200Data instantiates a new DeleteStageResponse200Data 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.
NewDeleteStageResponse200DataWithDefaults instantiates a new DeleteStageResponse200Data 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.
NewDeleteStageResponse200WithDefaults instantiates a new DeleteStageResponse200 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.
NewDeleteStagesResponse200 instantiates a new DeleteStagesResponse200 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.
NewDeleteStagesResponse200Data instantiates a new DeleteStagesResponse200Data 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.
NewDeleteStagesResponse200DataWithDefaults instantiates a new DeleteStagesResponse200Data 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.
NewDeleteStagesResponse200WithDefaults instantiates a new DeleteStagesResponse200 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.
NewDeleteTask instantiates a new DeleteTask 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.
NewDeleteTaskData instantiates a new DeleteTaskData 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.
NewDeleteTaskDataWithDefaults instantiates a new DeleteTaskData 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.
NewDeleteTaskResponse200 instantiates a new DeleteTaskResponse200 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.
NewDeleteTaskResponse200WithDefaults instantiates a new DeleteTaskResponse200 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.
NewDeleteTaskWithDefaults instantiates a new DeleteTask 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.
NewDeleteTeamUserRequest instantiates a new DeleteTeamUserRequest 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.
NewDeleteTeamUserRequestWithDefaults instantiates a new DeleteTeamUserRequest 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.
NewDeleteWebhook403Response instantiates a new DeleteWebhook403Response 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.
NewDeleteWebhook403ResponseWithDefaults instantiates a new DeleteWebhook403Response 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.
NewDuplicateDealResponse200 instantiates a new DuplicateDealResponse200 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.
NewDuplicateDealResponse200WithDefaults instantiates a new DuplicateDealResponse200 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.
NewFailResponse instantiates a new FailResponse 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.
NewFailResponseWithDefaults instantiates a new FailResponse 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.
NewFieldResponse200 instantiates a new FieldResponse200 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.
NewFieldResponse200WithDefaults instantiates a new FieldResponse200 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.
NewFieldsResponse200 instantiates a new FieldsResponse200 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.
NewFieldsResponse200AllOfAdditionalData instantiates a new FieldsResponse200AllOfAdditionalData 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.
NewFieldsResponse200AllOfAdditionalDataWithDefaults instantiates a new FieldsResponse200AllOfAdditionalData 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.
NewFieldsResponse200AllOfDataInner instantiates a new FieldsResponse200AllOfDataInner 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.
NewFieldsResponse200AllOfDataInnerWithDefaults instantiates a new FieldsResponse200AllOfDataInner 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.
NewFieldsResponse200WithDefaults instantiates a new FieldsResponse200 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.
NewFullRole instantiates a new FullRole 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.
NewFullRoleWithDefaults instantiates a new FullRole 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.
NewGetActivitiesCollectionResponse200 instantiates a new GetActivitiesCollectionResponse200 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.
NewGetActivitiesCollectionResponse200AdditionalData instantiates a new GetActivitiesCollectionResponse200AdditionalData 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.
NewGetActivitiesCollectionResponse200AdditionalDataWithDefaults instantiates a new GetActivitiesCollectionResponse200AdditionalData 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.
NewGetActivitiesCollectionResponse200WithDefaults instantiates a new GetActivitiesCollectionResponse200 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.
NewGetActivitiesResponse200 instantiates a new GetActivitiesResponse200 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.
NewGetActivitiesResponse200AdditionalData instantiates a new GetActivitiesResponse200AdditionalData 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.
NewGetActivitiesResponse200AdditionalDataPagination instantiates a new GetActivitiesResponse200AdditionalDataPagination 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.
NewGetActivitiesResponse200AdditionalDataPaginationWithDefaults instantiates a new GetActivitiesResponse200AdditionalDataPagination 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.
NewGetActivitiesResponse200AdditionalDataWithDefaults instantiates a new GetActivitiesResponse200AdditionalData 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.
NewGetActivitiesResponse200RelatedObjects instantiates a new GetActivitiesResponse200RelatedObjects 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.
NewGetActivitiesResponse200RelatedObjectsDeal instantiates a new GetActivitiesResponse200RelatedObjectsDeal 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.
NewGetActivitiesResponse200RelatedObjectsDealDEALID instantiates a new GetActivitiesResponse200RelatedObjectsDealDEALID 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.
NewGetActivitiesResponse200RelatedObjectsDealDEALIDWithDefaults instantiates a new GetActivitiesResponse200RelatedObjectsDealDEALID 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.
NewGetActivitiesResponse200RelatedObjectsDealWithDefaults instantiates a new GetActivitiesResponse200RelatedObjectsDeal 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.
NewGetActivitiesResponse200RelatedObjectsOrganization instantiates a new GetActivitiesResponse200RelatedObjectsOrganization 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.
NewGetActivitiesResponse200RelatedObjectsOrganizationORGANIZATIONID instantiates a new GetActivitiesResponse200RelatedObjectsOrganizationORGANIZATIONID 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.
NewGetActivitiesResponse200RelatedObjectsOrganizationORGANIZATIONIDWithDefaults instantiates a new GetActivitiesResponse200RelatedObjectsOrganizationORGANIZATIONID 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.
NewGetActivitiesResponse200RelatedObjectsOrganizationWithDefaults instantiates a new GetActivitiesResponse200RelatedObjectsOrganization 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.
NewGetActivitiesResponse200RelatedObjectsPerson instantiates a new GetActivitiesResponse200RelatedObjectsPerson 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.
NewGetActivitiesResponse200RelatedObjectsPersonPERSONID instantiates a new GetActivitiesResponse200RelatedObjectsPersonPERSONID 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.
NewGetActivitiesResponse200RelatedObjectsPersonPERSONIDAllOfEmailInner instantiates a new GetActivitiesResponse200RelatedObjectsPersonPERSONIDAllOfEmailInner 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.
NewGetActivitiesResponse200RelatedObjectsPersonPERSONIDAllOfEmailInnerWithDefaults instantiates a new GetActivitiesResponse200RelatedObjectsPersonPERSONIDAllOfEmailInner 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.
NewGetActivitiesResponse200RelatedObjectsPersonPERSONIDAllOfPhoneInner instantiates a new GetActivitiesResponse200RelatedObjectsPersonPERSONIDAllOfPhoneInner 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.
NewGetActivitiesResponse200RelatedObjectsPersonPERSONIDAllOfPhoneInnerWithDefaults instantiates a new GetActivitiesResponse200RelatedObjectsPersonPERSONIDAllOfPhoneInner 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.
NewGetActivitiesResponse200RelatedObjectsPersonPERSONIDWithDefaults instantiates a new GetActivitiesResponse200RelatedObjectsPersonPERSONID 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.
NewGetActivitiesResponse200RelatedObjectsPersonWithDefaults instantiates a new GetActivitiesResponse200RelatedObjectsPerson 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.
NewGetActivitiesResponse200RelatedObjectsUser instantiates a new GetActivitiesResponse200RelatedObjectsUser 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.
NewGetActivitiesResponse200RelatedObjectsUserWithDefaults instantiates a new GetActivitiesResponse200RelatedObjectsUser 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.
NewGetActivitiesResponse200RelatedObjectsWithDefaults instantiates a new GetActivitiesResponse200RelatedObjects 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.
NewGetActivitiesResponse200WithDefaults instantiates a new GetActivitiesResponse200 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.
NewGetActivityResponse200 instantiates a new GetActivityResponse200 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.
NewGetActivityResponse200WithDefaults instantiates a new GetActivityResponse200 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.
NewGetActivityTypesResponse200 instantiates a new GetActivityTypesResponse200 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.
NewGetActivityTypesResponse200AllOfDataInner instantiates a new GetActivityTypesResponse200AllOfDataInner 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.
NewGetActivityTypesResponse200AllOfDataInnerWithDefaults instantiates a new GetActivityTypesResponse200AllOfDataInner 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.
NewGetActivityTypesResponse200WithDefaults instantiates a new GetActivityTypesResponse200 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.
NewGetAddProductAttachementResponse200 instantiates a new GetAddProductAttachementResponse200 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.
NewGetAddProductAttachementResponse200Data instantiates a new GetAddProductAttachementResponse200Data 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.
NewGetAddProductAttachementResponse200DataWithDefaults instantiates a new GetAddProductAttachementResponse200Data 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.
NewGetAddProductAttachementResponse200WithDefaults instantiates a new GetAddProductAttachementResponse200 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.
NewGetAllMailMessagesOfMailThreadResponse200 instantiates a new GetAllMailMessagesOfMailThreadResponse200 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.
NewGetAllMailMessagesOfMailThreadResponse200AllOfDataInner instantiates a new GetAllMailMessagesOfMailThreadResponse200AllOfDataInner 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.
NewGetAllMailMessagesOfMailThreadResponse200AllOfDataInnerWithDefaults instantiates a new GetAllMailMessagesOfMailThreadResponse200AllOfDataInner 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.
NewGetAllMailMessagesOfMailThreadResponse200WithDefaults instantiates a new GetAllMailMessagesOfMailThreadResponse200 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.
NewGetAssociatedActivitiesResponse200 instantiates a new GetAssociatedActivitiesResponse200 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.
NewGetAssociatedActivitiesResponse200WithDefaults instantiates a new GetAssociatedActivitiesResponse200 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.
NewGetAssociatedDealsResponse200 instantiates a new GetAssociatedDealsResponse200 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.
NewGetAssociatedDealsResponse200AllOfRelatedObjects instantiates a new GetAssociatedDealsResponse200AllOfRelatedObjects 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.
NewGetAssociatedDealsResponse200AllOfRelatedObjectsPipeline instantiates a new GetAssociatedDealsResponse200AllOfRelatedObjectsPipeline 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.
NewGetAssociatedDealsResponse200AllOfRelatedObjectsPipelineWithDefaults instantiates a new GetAssociatedDealsResponse200AllOfRelatedObjectsPipeline 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.
NewGetAssociatedDealsResponse200AllOfRelatedObjectsStage instantiates a new GetAssociatedDealsResponse200AllOfRelatedObjectsStage 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.
NewGetAssociatedDealsResponse200AllOfRelatedObjectsStageWithDefaults instantiates a new GetAssociatedDealsResponse200AllOfRelatedObjectsStage 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.
NewGetAssociatedDealsResponse200AllOfRelatedObjectsWithDefaults instantiates a new GetAssociatedDealsResponse200AllOfRelatedObjects 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.
NewGetAssociatedDealsResponse200WithDefaults instantiates a new GetAssociatedDealsResponse200 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.
NewGetAssociatedFilesResponse200 instantiates a new GetAssociatedFilesResponse200 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.
NewGetAssociatedFilesResponse2001 instantiates a new GetAssociatedFilesResponse2001 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.
NewGetAssociatedFilesResponse2001AllOfDataInner instantiates a new GetAssociatedFilesResponse2001AllOfDataInner 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.
NewGetAssociatedFilesResponse2001AllOfDataInnerWithDefaults instantiates a new GetAssociatedFilesResponse2001AllOfDataInner 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.
NewGetAssociatedFilesResponse2001WithDefaults instantiates a new GetAssociatedFilesResponse2001 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.
NewGetAssociatedFilesResponse200AllOfDataInner instantiates a new GetAssociatedFilesResponse200AllOfDataInner 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.
NewGetAssociatedFilesResponse200AllOfDataInnerWithDefaults instantiates a new GetAssociatedFilesResponse200AllOfDataInner 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.
NewGetAssociatedFilesResponse200WithDefaults instantiates a new GetAssociatedFilesResponse200 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.
NewGetAssociatedFollowersResponse200 instantiates a new GetAssociatedFollowersResponse200 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.
NewGetAssociatedFollowersResponse2001 instantiates a new GetAssociatedFollowersResponse2001 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.
NewGetAssociatedFollowersResponse2001DataInner instantiates a new GetAssociatedFollowersResponse2001DataInner 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.
NewGetAssociatedFollowersResponse2001DataInnerWithDefaults instantiates a new GetAssociatedFollowersResponse2001DataInner 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.
NewGetAssociatedFollowersResponse2001WithDefaults instantiates a new GetAssociatedFollowersResponse2001 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.
NewGetAssociatedFollowersResponse200AllOfDataInner instantiates a new GetAssociatedFollowersResponse200AllOfDataInner 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.
NewGetAssociatedFollowersResponse200AllOfDataInnerWithDefaults instantiates a new GetAssociatedFollowersResponse200AllOfDataInner 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.
NewGetAssociatedFollowersResponse200WithDefaults instantiates a new GetAssociatedFollowersResponse200 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.
NewGetAssociatedMailMessagesResponse200 instantiates a new GetAssociatedMailMessagesResponse200 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.
NewGetAssociatedMailMessagesResponse200AllOfDataInner instantiates a new GetAssociatedMailMessagesResponse200AllOfDataInner 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.
NewGetAssociatedMailMessagesResponse200AllOfDataInnerWithDefaults instantiates a new GetAssociatedMailMessagesResponse200AllOfDataInner 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.
NewGetAssociatedMailMessagesResponse200WithDefaults instantiates a new GetAssociatedMailMessagesResponse200 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.
NewGetAssociatedPersonUpdatesResponse200 instantiates a new GetAssociatedPersonUpdatesResponse200 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.
NewGetAssociatedPersonUpdatesResponse200AllOfDataInner instantiates a new GetAssociatedPersonUpdatesResponse200AllOfDataInner 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.
NewGetAssociatedPersonUpdatesResponse200AllOfDataInnerWithDefaults instantiates a new GetAssociatedPersonUpdatesResponse200AllOfDataInner 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.
NewGetAssociatedPersonUpdatesResponse200WithDefaults instantiates a new GetAssociatedPersonUpdatesResponse200 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.
NewGetAssociatedUpdatesResponse200 instantiates a new GetAssociatedUpdatesResponse200 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.
NewGetAssociatedUpdatesResponse200AllOfDataInner instantiates a new GetAssociatedUpdatesResponse200AllOfDataInner 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.
NewGetAssociatedUpdatesResponse200AllOfDataInnerWithDefaults instantiates a new GetAssociatedUpdatesResponse200AllOfDataInner 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.
NewGetAssociatedUpdatesResponse200AllOfRelatedObjects instantiates a new GetAssociatedUpdatesResponse200AllOfRelatedObjects 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.
NewGetAssociatedUpdatesResponse200AllOfRelatedObjectsWithDefaults instantiates a new GetAssociatedUpdatesResponse200AllOfRelatedObjects 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.
NewGetAssociatedUpdatesResponse200WithDefaults instantiates a new GetAssociatedUpdatesResponse200 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.
NewGetChangelogResponse200 instantiates a new GetChangelogResponse200 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.
NewGetChangelogResponse200AllOfDataInner instantiates a new GetChangelogResponse200AllOfDataInner 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.
NewGetChangelogResponse200AllOfDataInnerWithDefaults instantiates a new GetChangelogResponse200AllOfDataInner 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.
NewGetChangelogResponse200WithDefaults instantiates a new GetChangelogResponse200 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.
NewGetCommentsResponse200 instantiates a new GetCommentsResponse200 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.
NewGetCommentsResponse200DataInner instantiates a new GetCommentsResponse200DataInner 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.
NewGetCommentsResponse200DataInnerWithDefaults instantiates a new GetCommentsResponse200DataInner 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.
NewGetCommentsResponse200WithDefaults instantiates a new GetCommentsResponse200 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.
NewGetCurrenciesResponse200 instantiates a new GetCurrenciesResponse200 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.
NewGetCurrenciesResponse200DataInner instantiates a new GetCurrenciesResponse200DataInner 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.
NewGetCurrenciesResponse200DataInnerWithDefaults instantiates a new GetCurrenciesResponse200DataInner 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.
NewGetCurrenciesResponse200WithDefaults instantiates a new GetCurrenciesResponse200 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.
NewGetCurrentUserResponse200 instantiates a new GetCurrentUserResponse200 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.
NewGetCurrentUserResponse200AllOfData instantiates a new GetCurrentUserResponse200AllOfData 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.
NewGetCurrentUserResponse200AllOfDataAllOfLanguage instantiates a new GetCurrentUserResponse200AllOfDataAllOfLanguage 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.
NewGetCurrentUserResponse200AllOfDataAllOfLanguageWithDefaults instantiates a new GetCurrentUserResponse200AllOfDataAllOfLanguage 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.
NewGetCurrentUserResponse200AllOfDataWithDefaults instantiates a new GetCurrentUserResponse200AllOfData 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.
NewGetCurrentUserResponse200WithDefaults instantiates a new GetCurrentUserResponse200 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.
NewGetDealActivitiesResponse200 instantiates a new GetDealActivitiesResponse200 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.
NewGetDealActivitiesResponse200AllOfRelatedObjects instantiates a new GetDealActivitiesResponse200AllOfRelatedObjects 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.
NewGetDealActivitiesResponse200AllOfRelatedObjectsWithDefaults instantiates a new GetDealActivitiesResponse200AllOfRelatedObjects 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.
NewGetDealActivitiesResponse200WithDefaults instantiates a new GetDealActivitiesResponse200 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.
NewGetDealParticipantsResponse200 instantiates a new GetDealParticipantsResponse200 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.
NewGetDealParticipantsResponse200WithDefaults instantiates a new GetDealParticipantsResponse200 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.
NewGetDealResponse200 instantiates a new GetDealResponse200 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.
NewGetDealResponse200AdditionalData instantiates a new GetDealResponse200AdditionalData 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.
NewGetDealResponse200AdditionalDataWithDefaults instantiates a new GetDealResponse200AdditionalData 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.
NewGetDealResponse200RelatedObjects instantiates a new GetDealResponse200RelatedObjects 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.
NewGetDealResponse200RelatedObjectsWithDefaults instantiates a new GetDealResponse200RelatedObjects 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.
NewGetDealResponse200WithDefaults instantiates a new GetDealResponse200 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.
NewGetDealsCollectionResponse200 instantiates a new GetDealsCollectionResponse200 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.
NewGetDealsCollectionResponse200WithDefaults instantiates a new GetDealsCollectionResponse200 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.
NewGetDealsResponse200 instantiates a new GetDealsResponse200 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.
NewGetDealsResponse200RelatedObjects instantiates a new GetDealsResponse200RelatedObjects 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.
NewGetDealsResponse200RelatedObjectsOrganization instantiates a new GetDealsResponse200RelatedObjectsOrganization 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.
NewGetDealsResponse200RelatedObjectsOrganizationWithDefaults instantiates a new GetDealsResponse200RelatedObjectsOrganization 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.
NewGetDealsResponse200RelatedObjectsPerson instantiates a new GetDealsResponse200RelatedObjectsPerson 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.
NewGetDealsResponse200RelatedObjectsPersonWithDefaults instantiates a new GetDealsResponse200RelatedObjectsPerson 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.
NewGetDealsResponse200RelatedObjectsUser instantiates a new GetDealsResponse200RelatedObjectsUser 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.
NewGetDealsResponse200RelatedObjectsUserWithDefaults instantiates a new GetDealsResponse200RelatedObjectsUser 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.
NewGetDealsResponse200RelatedObjectsWithDefaults instantiates a new GetDealsResponse200RelatedObjects 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.
NewGetDealsResponse200WithDefaults instantiates a new GetDealsResponse200 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.
NewGetDealsSummaryResponse200 instantiates a new GetDealsSummaryResponse200 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.
NewGetDealsSummaryResponse200Data instantiates a new GetDealsSummaryResponse200Data 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.
NewGetDealsSummaryResponse200DataValuesTotal instantiates a new GetDealsSummaryResponse200DataValuesTotal 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.
NewGetDealsSummaryResponse200DataValuesTotalWithDefaults instantiates a new GetDealsSummaryResponse200DataValuesTotal 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.
NewGetDealsSummaryResponse200DataWeightedValuesTotal instantiates a new GetDealsSummaryResponse200DataWeightedValuesTotal 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.
NewGetDealsSummaryResponse200DataWeightedValuesTotalWithDefaults instantiates a new GetDealsSummaryResponse200DataWeightedValuesTotal 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.
NewGetDealsSummaryResponse200DataWithDefaults instantiates a new GetDealsSummaryResponse200Data 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.
NewGetDealsSummaryResponse200WithDefaults instantiates a new GetDealsSummaryResponse200 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.
NewGetDealsTimelineResponse200 instantiates a new GetDealsTimelineResponse200 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.
NewGetDealsTimelineResponse200Data instantiates a new GetDealsTimelineResponse200Data 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.
NewGetDealsTimelineResponse200DataTotals instantiates a new GetDealsTimelineResponse200DataTotals 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.
NewGetDealsTimelineResponse200DataTotalsWithDefaults instantiates a new GetDealsTimelineResponse200DataTotals 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.
NewGetDealsTimelineResponse200DataWithDefaults instantiates a new GetDealsTimelineResponse200Data 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.
NewGetDealsTimelineResponse200WithDefaults instantiates a new GetDealsTimelineResponse200 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.
NewGetDealUpdatesResponse200 instantiates a new GetDealUpdatesResponse200 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.
NewGetDealUpdatesResponse200AllOfDataInner instantiates a new GetDealUpdatesResponse200AllOfDataInner 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.
NewGetDealUpdatesResponse200AllOfDataInnerWithDefaults instantiates a new GetDealUpdatesResponse200AllOfDataInner 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.
NewGetDealUpdatesResponse200AllOfRelatedObjects instantiates a new GetDealUpdatesResponse200AllOfRelatedObjects 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.
NewGetDealUpdatesResponse200AllOfRelatedObjectsWithDefaults instantiates a new GetDealUpdatesResponse200AllOfRelatedObjects 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.
NewGetDealUpdatesResponse200WithDefaults instantiates a new GetDealUpdatesResponse200 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.
NewGetFileResponse200 instantiates a new GetFileResponse200 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.
NewGetFileResponse200WithDefaults instantiates a new GetFileResponse200 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.
NewGetFilesResponse200 instantiates a new GetFilesResponse200 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.
NewGetFilesResponse200AdditionalData instantiates a new GetFilesResponse200AdditionalData 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.
NewGetFilesResponse200AdditionalDataWithDefaults instantiates a new GetFilesResponse200AdditionalData 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.
NewGetFilesResponse200DataInner instantiates a new GetFilesResponse200DataInner 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.
NewGetFilesResponse200DataInnerWithDefaults instantiates a new GetFilesResponse200DataInner 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.
NewGetFilesResponse200WithDefaults instantiates a new GetFilesResponse200 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.
NewGetFilterResponse200 instantiates a new GetFilterResponse200 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.
NewGetFilterResponse200WithDefaults instantiates a new GetFilterResponse200 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.
NewGetFiltersResponse200 instantiates a new GetFiltersResponse200 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.
NewGetFiltersResponse200AllOfDataInner instantiates a new GetFiltersResponse200AllOfDataInner 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.
NewGetFiltersResponse200AllOfDataInnerWithDefaults instantiates a new GetFiltersResponse200AllOfDataInner 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.
NewGetFiltersResponse200WithDefaults instantiates a new GetFiltersResponse200 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.
NewGetGoalResultResponse200 instantiates a new GetGoalResultResponse200 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.
NewGetGoalResultResponse200Data instantiates a new GetGoalResultResponse200Data 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.
NewGetGoalResultResponse200DataWithDefaults instantiates a new GetGoalResultResponse200Data 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.
NewGetGoalResultResponse200WithDefaults instantiates a new GetGoalResultResponse200 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.
NewGetGoalsResponse200 instantiates a new GetGoalsResponse200 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.
NewGetGoalsResponse200Data instantiates a new GetGoalsResponse200Data 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.
NewGetGoalsResponse200DataWithDefaults instantiates a new GetGoalsResponse200Data 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.
NewGetGoalsResponse200WithDefaults instantiates a new GetGoalsResponse200 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.
NewGetLeadLabelsResponse200 instantiates a new GetLeadLabelsResponse200 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.
NewGetLeadLabelsResponse200DataInner instantiates a new GetLeadLabelsResponse200DataInner 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.
NewGetLeadLabelsResponse200DataInnerWithDefaults instantiates a new GetLeadLabelsResponse200DataInner 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.
NewGetLeadLabelsResponse200WithDefaults instantiates a new GetLeadLabelsResponse200 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.
NewGetLeadSourcesResponse200 instantiates a new GetLeadSourcesResponse200 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.
NewGetLeadSourcesResponse200DataInner instantiates a new GetLeadSourcesResponse200DataInner 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.
NewGetLeadSourcesResponse200DataInnerWithDefaults instantiates a new GetLeadSourcesResponse200DataInner 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.
NewGetLeadSourcesResponse200WithDefaults instantiates a new GetLeadSourcesResponse200 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.
NewGetLeadsResponse200 instantiates a new GetLeadsResponse200 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.
NewGetLeadsResponse200DataInner instantiates a new GetLeadsResponse200DataInner 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.
NewGetLeadsResponse200DataInnerValue instantiates a new GetLeadsResponse200DataInnerValue 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.
NewGetLeadsResponse200DataInnerValueWithDefaults instantiates a new GetLeadsResponse200DataInnerValue 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.
NewGetLeadsResponse200DataInnerWithDefaults instantiates a new GetLeadsResponse200DataInner 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.
NewGetLeadsResponse200WithDefaults instantiates a new GetLeadsResponse200 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.
NewGetMailThreadsResponse200 instantiates a new GetMailThreadsResponse200 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.
NewGetMailThreadsResponse200WithDefaults instantiates a new GetMailThreadsResponse200 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.
NewGetNoteFieldsResponse200 instantiates a new GetNoteFieldsResponse200 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.
NewGetNoteFieldsResponse200AllOfDataInner instantiates a new GetNoteFieldsResponse200AllOfDataInner 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.
NewGetNoteFieldsResponse200AllOfDataInnerOptionsInner instantiates a new GetNoteFieldsResponse200AllOfDataInnerOptionsInner 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.
NewGetNoteFieldsResponse200AllOfDataInnerOptionsInnerWithDefaults instantiates a new GetNoteFieldsResponse200AllOfDataInnerOptionsInner 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.
NewGetNoteFieldsResponse200AllOfDataInnerWithDefaults instantiates a new GetNoteFieldsResponse200AllOfDataInner 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.
NewGetNoteFieldsResponse200WithDefaults instantiates a new GetNoteFieldsResponse200 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.
NewGetNotesResponse200 instantiates a new GetNotesResponse200 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.
NewGetNotesResponse200AdditionalData instantiates a new GetNotesResponse200AdditionalData 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.
NewGetNotesResponse200AdditionalDataPagination instantiates a new GetNotesResponse200AdditionalDataPagination 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.
NewGetNotesResponse200AdditionalDataPaginationWithDefaults instantiates a new GetNotesResponse200AdditionalDataPagination 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.
NewGetNotesResponse200AdditionalDataWithDefaults instantiates a new GetNotesResponse200AdditionalData 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.
NewGetNotesResponse200DataInner instantiates a new GetNotesResponse200DataInner 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.
NewGetNotesResponse200DataInnerDeal instantiates a new GetNotesResponse200DataInnerDeal 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.
NewGetNotesResponse200DataInnerDealWithDefaults instantiates a new GetNotesResponse200DataInnerDeal 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.
NewGetNotesResponse200DataInnerOrganization instantiates a new GetNotesResponse200DataInnerOrganization 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.
NewGetNotesResponse200DataInnerOrganizationWithDefaults instantiates a new GetNotesResponse200DataInnerOrganization 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.
NewGetNotesResponse200DataInnerPerson instantiates a new GetNotesResponse200DataInnerPerson 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.
NewGetNotesResponse200DataInnerPersonWithDefaults instantiates a new GetNotesResponse200DataInnerPerson 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.
NewGetNotesResponse200DataInnerUser instantiates a new GetNotesResponse200DataInnerUser 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.
NewGetNotesResponse200DataInnerUserWithDefaults instantiates a new GetNotesResponse200DataInnerUser 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.
NewGetNotesResponse200DataInnerWithDefaults instantiates a new GetNotesResponse200DataInner 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.
NewGetNotesResponse200WithDefaults instantiates a new GetNotesResponse200 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.
NewGetOneMailThreadResponse200 instantiates a new GetOneMailThreadResponse200 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.
NewGetOneMailThreadResponse200AllOfData instantiates a new GetOneMailThreadResponse200AllOfData 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.
NewGetOneMailThreadResponse200AllOfDataWithDefaults instantiates a new GetOneMailThreadResponse200AllOfData 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.
NewGetOneMailThreadResponse200WithDefaults instantiates a new GetOneMailThreadResponse200 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.
NewGetOrganizationRelationshipResponse200 instantiates a new GetOrganizationRelationshipResponse200 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.
NewGetOrganizationRelationshipResponse200WithDefaults instantiates a new GetOrganizationRelationshipResponse200 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.
NewGetOrganizationRelationshipsResponse200 instantiates a new GetOrganizationRelationshipsResponse200 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.
NewGetOrganizationRelationshipsResponse200AllOfRelatedObjects instantiates a new GetOrganizationRelationshipsResponse200AllOfRelatedObjects 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.
NewGetOrganizationRelationshipsResponse200AllOfRelatedObjectsWithDefaults instantiates a new GetOrganizationRelationshipsResponse200AllOfRelatedObjects 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.
NewGetOrganizationRelationshipsResponse200WithDefaults instantiates a new GetOrganizationRelationshipsResponse200 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.
NewGetOrganizationResponse200 instantiates a new GetOrganizationResponse200 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.
NewGetOrganizationResponse200AllOfAdditionalData instantiates a new GetOrganizationResponse200AllOfAdditionalData 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.
NewGetOrganizationResponse200AllOfAdditionalDataFollowers instantiates a new GetOrganizationResponse200AllOfAdditionalDataFollowers 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.
NewGetOrganizationResponse200AllOfAdditionalDataFollowersFOLLOWERUSERID instantiates a new GetOrganizationResponse200AllOfAdditionalDataFollowersFOLLOWERUSERID 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.
NewGetOrganizationResponse200AllOfAdditionalDataFollowersFOLLOWERUSERIDWithDefaults instantiates a new GetOrganizationResponse200AllOfAdditionalDataFollowersFOLLOWERUSERID 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.
NewGetOrganizationResponse200AllOfAdditionalDataFollowersWithDefaults instantiates a new GetOrganizationResponse200AllOfAdditionalDataFollowers 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.
NewGetOrganizationResponse200AllOfAdditionalDataWithDefaults instantiates a new GetOrganizationResponse200AllOfAdditionalData 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.
NewGetOrganizationResponse200WithDefaults instantiates a new GetOrganizationResponse200 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.
NewGetOrganizationsCollection200Response instantiates a new GetOrganizationsCollection200Response 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.
NewGetOrganizationsCollection200ResponseWithDefaults instantiates a new GetOrganizationsCollection200Response 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.
NewGetOrganizationsResponse200 instantiates a new GetOrganizationsResponse200 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.
NewGetOrganizationsResponse200AllOfRelatedObjects instantiates a new GetOrganizationsResponse200AllOfRelatedObjects 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.
NewGetOrganizationsResponse200AllOfRelatedObjectsPicture instantiates a new GetOrganizationsResponse200AllOfRelatedObjectsPicture 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.
NewGetOrganizationsResponse200AllOfRelatedObjectsPicturePICTUREID instantiates a new GetOrganizationsResponse200AllOfRelatedObjectsPicturePICTUREID 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.
NewGetOrganizationsResponse200AllOfRelatedObjectsPicturePICTUREIDWithDefaults instantiates a new GetOrganizationsResponse200AllOfRelatedObjectsPicturePICTUREID 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.
NewGetOrganizationsResponse200AllOfRelatedObjectsPictureWithDefaults instantiates a new GetOrganizationsResponse200AllOfRelatedObjectsPicture 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.
NewGetOrganizationsResponse200AllOfRelatedObjectsWithDefaults instantiates a new GetOrganizationsResponse200AllOfRelatedObjects 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.
NewGetOrganizationsResponse200WithDefaults instantiates a new GetOrganizationsResponse200 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.
NewGetParticipantsChangelog200 instantiates a new GetParticipantsChangelog200 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.
NewGetParticipantsChangelog200WithDefaults instantiates a new GetParticipantsChangelog200 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.
NewGetPermissionSetsResponse200 instantiates a new GetPermissionSetsResponse200 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.
NewGetPermissionSetsResponse200AllOfDataInner instantiates a new GetPermissionSetsResponse200AllOfDataInner 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.
NewGetPermissionSetsResponse200AllOfDataInnerWithDefaults instantiates a new GetPermissionSetsResponse200AllOfDataInner 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.
NewGetPermissionSetsResponse200WithDefaults instantiates a new GetPermissionSetsResponse200 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.
NewGetPersonProductsResponse200 instantiates a new GetPersonProductsResponse200 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.
NewGetPersonProductsResponse200AllOfDataInner instantiates a new GetPersonProductsResponse200AllOfDataInner 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.
NewGetPersonProductsResponse200AllOfDataInnerDEALID instantiates a new GetPersonProductsResponse200AllOfDataInnerDEALID 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.
NewGetPersonProductsResponse200AllOfDataInnerDEALIDDeal instantiates a new GetPersonProductsResponse200AllOfDataInnerDEALIDDeal 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.
NewGetPersonProductsResponse200AllOfDataInnerDEALIDDealWithDefaults instantiates a new GetPersonProductsResponse200AllOfDataInnerDEALIDDeal 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.
NewGetPersonProductsResponse200AllOfDataInnerDEALIDProduct instantiates a new GetPersonProductsResponse200AllOfDataInnerDEALIDProduct 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.
NewGetPersonProductsResponse200AllOfDataInnerDEALIDProductWithDefaults instantiates a new GetPersonProductsResponse200AllOfDataInnerDEALIDProduct 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.
NewGetPersonProductsResponse200AllOfDataInnerDEALIDWithDefaults instantiates a new GetPersonProductsResponse200AllOfDataInnerDEALID 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.
NewGetPersonProductsResponse200AllOfDataInnerWithDefaults instantiates a new GetPersonProductsResponse200AllOfDataInner 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.
NewGetPersonProductsResponse200WithDefaults instantiates a new GetPersonProductsResponse200 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.
NewGetPersonResponse200 instantiates a new GetPersonResponse200 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.
NewGetPersonResponse200AllOfAdditionalData instantiates a new GetPersonResponse200AllOfAdditionalData 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.
NewGetPersonResponse200AllOfAdditionalDataWithDefaults instantiates a new GetPersonResponse200AllOfAdditionalData 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.
NewGetPersonResponse200WithDefaults instantiates a new GetPersonResponse200 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.
NewGetPersonsCollection200Response instantiates a new GetPersonsCollection200Response 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.
NewGetPersonsCollection200ResponseWithDefaults instantiates a new GetPersonsCollection200Response 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.
NewGetPersonsResponse200 instantiates a new GetPersonsResponse200 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.
NewGetPersonsResponse200WithDefaults instantiates a new GetPersonsResponse200 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.
NewGetPipelineConversionStatisticsResponse200 instantiates a new GetPipelineConversionStatisticsResponse200 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.
NewGetPipelineConversionStatisticsResponse200AllOfData instantiates a new GetPipelineConversionStatisticsResponse200AllOfData 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.
NewGetPipelineConversionStatisticsResponse200AllOfDataStageConversionsInner instantiates a new GetPipelineConversionStatisticsResponse200AllOfDataStageConversionsInner 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.
NewGetPipelineConversionStatisticsResponse200AllOfDataStageConversionsInnerWithDefaults instantiates a new GetPipelineConversionStatisticsResponse200AllOfDataStageConversionsInner 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.
NewGetPipelineConversionStatisticsResponse200AllOfDataWithDefaults instantiates a new GetPipelineConversionStatisticsResponse200AllOfData 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.
NewGetPipelineConversionStatisticsResponse200WithDefaults instantiates a new GetPipelineConversionStatisticsResponse200 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.
NewGetPipelineMovementStatisticsResponse200 instantiates a new GetPipelineMovementStatisticsResponse200 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.
NewGetPipelineMovementStatisticsResponse200AllOfData instantiates a new GetPipelineMovementStatisticsResponse200AllOfData 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.
NewGetPipelineMovementStatisticsResponse200AllOfDataAverageAgeInDays instantiates a new GetPipelineMovementStatisticsResponse200AllOfDataAverageAgeInDays 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.
NewGetPipelineMovementStatisticsResponse200AllOfDataAverageAgeInDaysByStagesInner instantiates a new GetPipelineMovementStatisticsResponse200AllOfDataAverageAgeInDaysByStagesInner 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.
NewGetPipelineMovementStatisticsResponse200AllOfDataAverageAgeInDaysByStagesInnerWithDefaults instantiates a new GetPipelineMovementStatisticsResponse200AllOfDataAverageAgeInDaysByStagesInner 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.
NewGetPipelineMovementStatisticsResponse200AllOfDataAverageAgeInDaysWithDefaults instantiates a new GetPipelineMovementStatisticsResponse200AllOfDataAverageAgeInDays 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.
NewGetPipelineMovementStatisticsResponse200AllOfDataMovementsBetweenStages instantiates a new GetPipelineMovementStatisticsResponse200AllOfDataMovementsBetweenStages 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.
NewGetPipelineMovementStatisticsResponse200AllOfDataMovementsBetweenStagesWithDefaults instantiates a new GetPipelineMovementStatisticsResponse200AllOfDataMovementsBetweenStages 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.
NewGetPipelineMovementStatisticsResponse200AllOfDataNewDeals instantiates a new GetPipelineMovementStatisticsResponse200AllOfDataNewDeals 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.
NewGetPipelineMovementStatisticsResponse200AllOfDataNewDealsFormattedValues instantiates a new GetPipelineMovementStatisticsResponse200AllOfDataNewDealsFormattedValues 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.
NewGetPipelineMovementStatisticsResponse200AllOfDataNewDealsFormattedValuesWithDefaults instantiates a new GetPipelineMovementStatisticsResponse200AllOfDataNewDealsFormattedValues 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.
NewGetPipelineMovementStatisticsResponse200AllOfDataNewDealsValues instantiates a new GetPipelineMovementStatisticsResponse200AllOfDataNewDealsValues 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.
NewGetPipelineMovementStatisticsResponse200AllOfDataNewDealsValuesWithDefaults instantiates a new GetPipelineMovementStatisticsResponse200AllOfDataNewDealsValues 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.
NewGetPipelineMovementStatisticsResponse200AllOfDataNewDealsWithDefaults instantiates a new GetPipelineMovementStatisticsResponse200AllOfDataNewDeals 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.
NewGetPipelineMovementStatisticsResponse200AllOfDataWithDefaults instantiates a new GetPipelineMovementStatisticsResponse200AllOfData 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.
NewGetPipelineMovementStatisticsResponse200WithDefaults instantiates a new GetPipelineMovementStatisticsResponse200 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.
NewGetPipelineResponse200 instantiates a new GetPipelineResponse200 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.
NewGetPipelineResponse200WithDefaults instantiates a new GetPipelineResponse200 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.
NewGetPipelinesResponse200 instantiates a new GetPipelinesResponse200 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.
NewGetPipelinesResponse200WithDefaults instantiates a new GetPipelinesResponse200 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.
NewGetProductAttachementResponse200 instantiates a new GetProductAttachementResponse200 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.
NewGetProductAttachementResponse200Data instantiates a new GetProductAttachementResponse200Data 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.
NewGetProductAttachementResponse200DataWithDefaults instantiates a new GetProductAttachementResponse200Data 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.
NewGetProductAttachementResponse200WithDefaults instantiates a new GetProductAttachementResponse200 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.
NewGetProductFieldResponse200 instantiates a new GetProductFieldResponse200 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.
NewGetProductFieldResponse200Data instantiates a new GetProductFieldResponse200Data 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.
NewGetProductFieldResponse200DataWithDefaults instantiates a new GetProductFieldResponse200Data 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.
NewGetProductFieldResponse200WithDefaults instantiates a new GetProductFieldResponse200 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.
NewGetProductFieldsResponse200 instantiates a new GetProductFieldsResponse200 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.
NewGetProductFieldsResponse200WithDefaults instantiates a new GetProductFieldsResponse200 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.
NewGetProductFollowersResponseSuccess instantiates a new GetProductFollowersResponseSuccess 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.
NewGetProductFollowersResponseSuccessAllOfDataInner instantiates a new GetProductFollowersResponseSuccessAllOfDataInner 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.
NewGetProductFollowersResponseSuccessAllOfDataInnerWithDefaults instantiates a new GetProductFollowersResponseSuccessAllOfDataInner 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.
NewGetProductFollowersResponseSuccessWithDefaults instantiates a new GetProductFollowersResponseSuccess 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.
NewGetproductResponse200 instantiates a new GetproductResponse200 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.
NewGetproductResponse200Data instantiates a new GetproductResponse200Data 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.
NewGetproductResponse200DataWithDefaults instantiates a new GetproductResponse200Data 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.
NewGetproductResponse200WithDefaults instantiates a new GetproductResponse200 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.
NewGetProductsResponse200 instantiates a new GetProductsResponse200 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.
NewGetProductsResponse200WithDefaults instantiates a new GetProductsResponse200 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.
NewGetProjectBoardResponse200 instantiates a new GetProjectBoardResponse200 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.
NewGetProjectBoardResponse200WithDefaults instantiates a new GetProjectBoardResponse200 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.
NewGetProjectBoardsResponse200 instantiates a new GetProjectBoardsResponse200 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.
NewGetProjectBoardsResponse200DataInner instantiates a new GetProjectBoardsResponse200DataInner 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.
NewGetProjectBoardsResponse200DataInnerWithDefaults instantiates a new GetProjectBoardsResponse200DataInner 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.
NewGetProjectBoardsResponse200WithDefaults instantiates a new GetProjectBoardsResponse200 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.
NewGetProjectGroupsResponse200 instantiates a new GetProjectGroupsResponse200 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.
NewGetProjectGroupsResponse200DataInner instantiates a new GetProjectGroupsResponse200DataInner 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.
NewGetProjectGroupsResponse200DataInnerWithDefaults instantiates a new GetProjectGroupsResponse200DataInner 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.
NewGetProjectGroupsResponse200WithDefaults instantiates a new GetProjectGroupsResponse200 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.
NewGetProjectPhaseResponse200 instantiates a new GetProjectPhaseResponse200 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.
NewGetProjectPhaseResponse200WithDefaults instantiates a new GetProjectPhaseResponse200 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.
NewGetProjectPhasesResponse200 instantiates a new GetProjectPhasesResponse200 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.
NewGetProjectPhasesResponse200DataInner instantiates a new GetProjectPhasesResponse200DataInner 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.
NewGetProjectPhasesResponse200DataInnerWithDefaults instantiates a new GetProjectPhasesResponse200DataInner 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.
NewGetProjectPhasesResponse200WithDefaults instantiates a new GetProjectPhasesResponse200 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.
NewGetProjectPlanResponse200 instantiates a new GetProjectPlanResponse200 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.
NewGetProjectPlanResponse200DataInner instantiates a new GetProjectPlanResponse200DataInner 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.
NewGetProjectPlanResponse200DataInnerWithDefaults instantiates a new GetProjectPlanResponse200DataInner 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.
NewGetProjectPlanResponse200WithDefaults instantiates a new GetProjectPlanResponse200 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.
NewGetProjectResponse200 instantiates a new GetProjectResponse200 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.
NewGetProjectResponse200WithDefaults instantiates a new GetProjectResponse200 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.
NewGetProjectsResponse200 instantiates a new GetProjectsResponse200 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.
NewGetProjectsResponse200WithDefaults instantiates a new GetProjectsResponse200 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.
NewGetProjectTemplateResponse200 instantiates a new GetProjectTemplateResponse200 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.
NewGetProjectTemplateResponse200WithDefaults instantiates a new GetProjectTemplateResponse200 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.
NewGetProjectTemplatesResponse200 instantiates a new GetProjectTemplatesResponse200 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.
NewGetProjectTemplatesResponse200WithDefaults instantiates a new GetProjectTemplatesResponse200 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.
NewGetRecentsResponse200 instantiates a new GetRecentsResponse200 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.
NewGetRecentsResponse200AdditionalData instantiates a new GetRecentsResponse200AdditionalData 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.
NewGetRecentsResponse200AdditionalDataWithDefaults instantiates a new GetRecentsResponse200AdditionalData 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.
NewGetRecentsResponse200DataInnerAnyOf instantiates a new GetRecentsResponse200DataInnerAnyOf 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.
NewGetRecentsResponse200DataInnerAnyOf1 instantiates a new GetRecentsResponse200DataInnerAnyOf1 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.
NewGetRecentsResponse200DataInnerAnyOf10 instantiates a new GetRecentsResponse200DataInnerAnyOf10 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.
NewGetRecentsResponse200DataInnerAnyOf10WithDefaults instantiates a new GetRecentsResponse200DataInnerAnyOf10 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.
NewGetRecentsResponse200DataInnerAnyOf11 instantiates a new GetRecentsResponse200DataInnerAnyOf11 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.
NewGetRecentsResponse200DataInnerAnyOf11Data instantiates a new GetRecentsResponse200DataInnerAnyOf11Data 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.
NewGetRecentsResponse200DataInnerAnyOf11DataAccessInner instantiates a new GetRecentsResponse200DataInnerAnyOf11DataAccessInner 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.
NewGetRecentsResponse200DataInnerAnyOf11DataAccessInnerWithDefaults instantiates a new GetRecentsResponse200DataInnerAnyOf11DataAccessInner 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.
NewGetRecentsResponse200DataInnerAnyOf11DataWithDefaults instantiates a new GetRecentsResponse200DataInnerAnyOf11Data 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.
NewGetRecentsResponse200DataInnerAnyOf11WithDefaults instantiates a new GetRecentsResponse200DataInnerAnyOf11 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.
NewGetRecentsResponse200DataInnerAnyOf1WithDefaults instantiates a new GetRecentsResponse200DataInnerAnyOf1 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.
NewGetRecentsResponse200DataInnerAnyOf2 instantiates a new GetRecentsResponse200DataInnerAnyOf2 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.
NewGetRecentsResponse200DataInnerAnyOf2WithDefaults instantiates a new GetRecentsResponse200DataInnerAnyOf2 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.
NewGetRecentsResponse200DataInnerAnyOf3 instantiates a new GetRecentsResponse200DataInnerAnyOf3 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.
NewGetRecentsResponse200DataInnerAnyOf3WithDefaults instantiates a new GetRecentsResponse200DataInnerAnyOf3 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.
NewGetRecentsResponse200DataInnerAnyOf4 instantiates a new GetRecentsResponse200DataInnerAnyOf4 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.
NewGetRecentsResponse200DataInnerAnyOf4WithDefaults instantiates a new GetRecentsResponse200DataInnerAnyOf4 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.
NewGetRecentsResponse200DataInnerAnyOf5 instantiates a new GetRecentsResponse200DataInnerAnyOf5 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.
NewGetRecentsResponse200DataInnerAnyOf5WithDefaults instantiates a new GetRecentsResponse200DataInnerAnyOf5 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.
NewGetRecentsResponse200DataInnerAnyOf6 instantiates a new GetRecentsResponse200DataInnerAnyOf6 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.
NewGetRecentsResponse200DataInnerAnyOf6WithDefaults instantiates a new GetRecentsResponse200DataInnerAnyOf6 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.
NewGetRecentsResponse200DataInnerAnyOf7 instantiates a new GetRecentsResponse200DataInnerAnyOf7 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.
NewGetRecentsResponse200DataInnerAnyOf7WithDefaults instantiates a new GetRecentsResponse200DataInnerAnyOf7 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.
NewGetRecentsResponse200DataInnerAnyOf8 instantiates a new GetRecentsResponse200DataInnerAnyOf8 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.
NewGetRecentsResponse200DataInnerAnyOf8WithDefaults instantiates a new GetRecentsResponse200DataInnerAnyOf8 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.
NewGetRecentsResponse200DataInnerAnyOf9 instantiates a new GetRecentsResponse200DataInnerAnyOf9 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.
NewGetRecentsResponse200DataInnerAnyOf9Data instantiates a new GetRecentsResponse200DataInnerAnyOf9Data 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.
NewGetRecentsResponse200DataInnerAnyOf9DataWithDefaults instantiates a new GetRecentsResponse200DataInnerAnyOf9Data 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.
NewGetRecentsResponse200DataInnerAnyOf9WithDefaults instantiates a new GetRecentsResponse200DataInnerAnyOf9 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.
NewGetRecentsResponse200DataInnerAnyOfWithDefaults instantiates a new GetRecentsResponse200DataInnerAnyOf 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.
NewGetRecentsResponse200WithDefaults instantiates a new GetRecentsResponse200 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.
NewGetRolePipelines200 instantiates a new GetRolePipelines200 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.
NewGetRolePipelines200AllOfData instantiates a new GetRolePipelines200AllOfData 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.
NewGetRolePipelines200AllOfDataWithDefaults instantiates a new GetRolePipelines200AllOfData 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.
NewGetRolePipelines200WithDefaults instantiates a new GetRolePipelines200 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.
NewGetRoleResponse200 instantiates a new GetRoleResponse200 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.
NewGetRoleResponse200AllOfAdditionalData instantiates a new GetRoleResponse200AllOfAdditionalData 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.
NewGetRoleResponse200AllOfAdditionalDataSettings instantiates a new GetRoleResponse200AllOfAdditionalDataSettings 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.
NewGetRoleResponse200AllOfAdditionalDataSettingsWithDefaults instantiates a new GetRoleResponse200AllOfAdditionalDataSettings 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.
NewGetRoleResponse200AllOfAdditionalDataWithDefaults instantiates a new GetRoleResponse200AllOfAdditionalData 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.
NewGetRoleResponse200WithDefaults instantiates a new GetRoleResponse200 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.
NewGetRoleSettingsResponse200 instantiates a new GetRoleSettingsResponse200 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.
NewGetRoleSettingsResponse200WithDefaults instantiates a new GetRoleSettingsResponse200 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.
NewGetRolesResponse200 instantiates a new GetRolesResponse200 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.
NewGetRolesResponse200AllOfAdditionalData instantiates a new GetRolesResponse200AllOfAdditionalData 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.
NewGetRolesResponse200AllOfAdditionalDataPagination instantiates a new GetRolesResponse200AllOfAdditionalDataPagination 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.
NewGetRolesResponse200AllOfAdditionalDataPaginationWithDefaults instantiates a new GetRolesResponse200AllOfAdditionalDataPagination 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.
NewGetRolesResponse200AllOfAdditionalDataWithDefaults instantiates a new GetRolesResponse200AllOfAdditionalData 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.
NewGetRolesResponse200WithDefaults instantiates a new GetRolesResponse200 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.
NewGetStageDealsResponse200 instantiates a new GetStageDealsResponse200 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.
NewGetStageDealsResponse200WithDefaults instantiates a new GetStageDealsResponse200 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.
NewGetStageResponse200 instantiates a new GetStageResponse200 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.
NewGetStageResponse200Data instantiates a new GetStageResponse200Data 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.
NewGetStageResponse200DataWithDefaults instantiates a new GetStageResponse200Data 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.
NewGetStageResponse200WithDefaults instantiates a new GetStageResponse200 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.
NewGetStagesResponse200 instantiates a new GetStagesResponse200 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.
NewGetStagesResponse200DataInner instantiates a new GetStagesResponse200DataInner 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.
NewGetStagesResponse200DataInnerWithDefaults instantiates a new GetStagesResponse200DataInner 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.
NewGetStagesResponse200WithDefaults instantiates a new GetStagesResponse200 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.
NewGetTaskResponse200 instantiates a new GetTaskResponse200 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.
NewGetTaskResponse200WithDefaults instantiates a new GetTaskResponse200 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.
NewGetTasksResponse200 instantiates a new GetTasksResponse200 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.
NewGetTasksResponse200WithDefaults instantiates a new GetTasksResponse200 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.
NewGetTokensResponse200 instantiates a new GetTokensResponse200 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.
NewGetTokensResponse200WithDefaults instantiates a new GetTokensResponse200 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.
NewGetUserPermissionsResponse200 instantiates a new GetUserPermissionsResponse200 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.
NewGetUserPermissionsResponse200AllOfData instantiates a new GetUserPermissionsResponse200AllOfData 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.
NewGetUserPermissionsResponse200AllOfDataWithDefaults instantiates a new GetUserPermissionsResponse200AllOfData 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.
NewGetUserPermissionsResponse200WithDefaults instantiates a new GetUserPermissionsResponse200 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.
NewGetUserRoleAssignmentsResponse200 instantiates a new GetUserRoleAssignmentsResponse200 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.
NewGetUserRoleAssignmentsResponse200WithDefaults instantiates a new GetUserRoleAssignmentsResponse200 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.
NewGetUserSettingsResponse200 instantiates a new GetUserSettingsResponse200 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.
NewGetUserSettingsResponse200AllOfData instantiates a new GetUserSettingsResponse200AllOfData 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.
NewGetUserSettingsResponse200AllOfDataWithDefaults instantiates a new GetUserSettingsResponse200AllOfData 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.
NewGetUserSettingsResponse200WithDefaults instantiates a new GetUserSettingsResponse200 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.
NewGetWebhooksResponse200 instantiates a new GetWebhooksResponse200 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.
NewGetWebhooksResponse200AllOfDataInner instantiates a new GetWebhooksResponse200AllOfDataInner 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.
NewGetWebhooksResponse200AllOfDataInnerWithDefaults instantiates a new GetWebhooksResponse200AllOfDataInner 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.
NewGetWebhooksResponse200WithDefaults instantiates a new GetWebhooksResponse200 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.
NewLeadIdResponse200 instantiates a new LeadIdResponse200 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.
NewLeadIdResponse200Data instantiates a new LeadIdResponse200Data 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.
NewLeadIdResponse200DataWithDefaults instantiates a new LeadIdResponse200Data 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.
NewLeadIdResponse200WithDefaults instantiates a new LeadIdResponse200 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.
NewLeadResponse404 instantiates a new LeadResponse404 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.
NewLeadResponse404WithDefaults instantiates a new LeadResponse404 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.
NewLinkFileToItemResponse200 instantiates a new LinkFileToItemResponse200 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.
NewLinkFileToItemResponse200WithDefaults instantiates a new LinkFileToItemResponse200 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.
NewListPermittedUsersResponse200 instantiates a new ListPermittedUsersResponse200 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.
NewListPermittedUsersResponse2001 instantiates a new ListPermittedUsersResponse2001 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.
NewListPermittedUsersResponse2001WithDefaults instantiates a new ListPermittedUsersResponse2001 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.
NewListPermittedUsersResponse200AllOfData instantiates a new ListPermittedUsersResponse200AllOfData 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.
NewListPermittedUsersResponse200AllOfDataWithDefaults instantiates a new ListPermittedUsersResponse200AllOfData 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.
NewListPermittedUsersResponse200WithDefaults instantiates a new ListPermittedUsersResponse200 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.
NewListPersonsResponse200 instantiates a new ListPersonsResponse200 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.
NewListPersonsResponse200AllOfRelatedObjects instantiates a new ListPersonsResponse200AllOfRelatedObjects 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.
NewListPersonsResponse200AllOfRelatedObjectsWithDefaults instantiates a new ListPersonsResponse200AllOfRelatedObjects 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.
NewListPersonsResponse200WithDefaults instantiates a new ListPersonsResponse200 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.
NewListProductsResponse200 instantiates a new ListProductsResponse200 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.
NewListProductsResponse200AllOfAdditionalData instantiates a new ListProductsResponse200AllOfAdditionalData 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.
NewListProductsResponse200AllOfAdditionalDataWithDefaults instantiates a new ListProductsResponse200AllOfAdditionalData 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.
NewListProductsResponse200AllOfData instantiates a new ListProductsResponse200AllOfData 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.
NewListProductsResponse200AllOfDataInner instantiates a new ListProductsResponse200AllOfDataInner 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.
NewListProductsResponse200AllOfDataInnerProduct instantiates a new ListProductsResponse200AllOfDataInnerProduct 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.
NewListProductsResponse200AllOfDataInnerProductWithDefaults instantiates a new ListProductsResponse200AllOfDataInnerProduct 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.
NewListProductsResponse200AllOfDataInnerWithDefaults instantiates a new ListProductsResponse200AllOfDataInner 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.
NewListProductsResponse200AllOfDataItemsInner instantiates a new ListProductsResponse200AllOfDataItemsInner 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.
NewListProductsResponse200AllOfDataItemsInnerProduct instantiates a new ListProductsResponse200AllOfDataItemsInnerProduct 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.
NewListProductsResponse200AllOfDataItemsInnerProductWithDefaults instantiates a new ListProductsResponse200AllOfDataItemsInnerProduct 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.
NewListProductsResponse200AllOfDataItemsInnerWithDefaults instantiates a new ListProductsResponse200AllOfDataItemsInner 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.
NewListProductsResponse200AllOfDataWithDefaults instantiates a new ListProductsResponse200AllOfData 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.
NewListProductsResponse200AllOfRelatedObjects instantiates a new ListProductsResponse200AllOfRelatedObjects 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.
NewListProductsResponse200AllOfRelatedObjectsWithDefaults instantiates a new ListProductsResponse200AllOfRelatedObjects 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.
NewListProductsResponse200WithDefaults instantiates a new ListProductsResponse200 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.
NewMailMessageItemForList instantiates a new MailMessageItemForList 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.
NewMailMessageItemForListAllOfFromInner instantiates a new MailMessageItemForListAllOfFromInner 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.
NewMailMessageItemForListAllOfFromInnerWithDefaults instantiates a new MailMessageItemForListAllOfFromInner 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.
NewMailMessageItemForListWithDefaults instantiates a new MailMessageItemForList 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.
NewMailMessageResponse200 instantiates a new MailMessageResponse200 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.
NewMailMessageResponse200AllOfData instantiates a new MailMessageResponse200AllOfData 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.
NewMailMessageResponse200AllOfDataWithDefaults instantiates a new MailMessageResponse200AllOfData 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.
NewMailMessageResponse200WithDefaults instantiates a new MailMessageResponse200 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.
NewMergeDealsRequest instantiates a new MergeDealsRequest 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.
NewMergeDealsRequestWithDefaults instantiates a new MergeDealsRequest 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.
NewMergeDealsResponse200 instantiates a new MergeDealsResponse200 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.
NewMergeDealsResponse200Data instantiates a new MergeDealsResponse200Data 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.
NewMergeDealsResponse200DataWithDefaults instantiates a new MergeDealsResponse200Data 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.
NewMergeDealsResponse200WithDefaults instantiates a new MergeDealsResponse200 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.
NewMergeOrganizationsRequest instantiates a new MergeOrganizationsRequest 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.
NewMergeOrganizationsRequestWithDefaults instantiates a new MergeOrganizationsRequest 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.
NewMergeOrganizationsResponse200 instantiates a new MergeOrganizationsResponse200 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.
NewMergeOrganizationsResponse200Data instantiates a new MergeOrganizationsResponse200Data 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.
NewMergeOrganizationsResponse200DataWithDefaults instantiates a new MergeOrganizationsResponse200Data 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.
NewMergeOrganizationsResponse200WithDefaults instantiates a new MergeOrganizationsResponse200 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.
NewMergePersonItem instantiates a new MergePersonItem 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.
NewMergePersonItemWithDefaults instantiates a new MergePersonItem 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.
NewMergePersonsRequest instantiates a new MergePersonsRequest 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.
NewMergePersonsRequestWithDefaults instantiates a new MergePersonsRequest 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.
NewMergePersonsResponse200 instantiates a new MergePersonsResponse200 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.
NewMergePersonsResponse200WithDefaults instantiates a new MergePersonsResponse200 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.
NewNewFollowerResponse200 instantiates a new NewFollowerResponse200 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.
NewNewFollowerResponse200Data instantiates a new NewFollowerResponse200Data 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.
NewNewFollowerResponse200DataWithDefaults instantiates a new NewFollowerResponse200Data 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.
NewNewFollowerResponse200WithDefaults instantiates a new NewFollowerResponse200 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.
NewNoteRequest instantiates a new NoteRequest 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.
NewNoteRequestWithDefaults instantiates a new NoteRequest 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.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewOneCommentResponse200 instantiates a new OneCommentResponse200 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.
NewOneCommentResponse200WithDefaults instantiates a new OneCommentResponse200 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.
NewOneLeadResponse200 instantiates a new OneLeadResponse200 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.
NewOneLeadResponse200WithDefaults instantiates a new OneLeadResponse200 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.
NewOneNoteResponse200 instantiates a new OneNoteResponse200 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.
NewOneNoteResponse200WithDefaults instantiates a new OneNoteResponse200 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.
NewOrganizationItem instantiates a new OrganizationItem 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.
NewOrganizationItemWithDefaults instantiates a new OrganizationItem 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.
NewOrganizationRelationship instantiates a new OrganizationRelationship 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.
NewOrganizationRelationshipDetails instantiates a new OrganizationRelationshipDetails 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.
NewOrganizationRelationshipDetailsWithDefaults instantiates a new OrganizationRelationshipDetails 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.
NewOrganizationRelationshipWithCalculatedFields instantiates a new OrganizationRelationshipWithCalculatedFields 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.
NewOrganizationRelationshipWithCalculatedFieldsWithDefaults instantiates a new OrganizationRelationshipWithCalculatedFields 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.
NewOrganizationRelationshipWithDefaults instantiates a new OrganizationRelationship 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.
NewOrganizationsCollectionResponseObject instantiates a new OrganizationsCollectionResponseObject 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.
NewOrganizationsCollectionResponseObjectWithDefaults instantiates a new OrganizationsCollectionResponseObject 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.
NewOwner instantiates a new Owner 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.
NewOwnerWithDefaults instantiates a new Owner 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.
NewPaginationDetails instantiates a new PaginationDetails 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.
NewPaginationDetailsWithDefaults instantiates a new PaginationDetails 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.
NewParticipantChangelogItem instantiates a new ParticipantChangelogItem 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.
NewParticipantChangelogItemWithDefaults instantiates a new ParticipantChangelogItem 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.
NewPaymentResponse200 instantiates a new PaymentResponse200 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.
NewPaymentResponse200AllOfDataInner instantiates a new PaymentResponse200AllOfDataInner 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.
NewPaymentResponse200AllOfDataInnerWithDefaults instantiates a new PaymentResponse200AllOfDataInner 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.
NewPaymentResponse200WithDefaults instantiates a new PaymentResponse200 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.
NewPersonItem instantiates a new PersonItem 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.
NewPersonItemAllOfEmailInner instantiates a new PersonItemAllOfEmailInner 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.
NewPersonItemAllOfEmailInnerWithDefaults instantiates a new PersonItemAllOfEmailInner 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.
NewPersonItemAllOfPhoneInner instantiates a new PersonItemAllOfPhoneInner 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.
NewPersonItemAllOfPhoneInnerWithDefaults instantiates a new PersonItemAllOfPhoneInner 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.
NewPersonItemAllOfPictureId instantiates a new PersonItemAllOfPictureId 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.
NewPersonItemAllOfPictureIdAllOfPictures instantiates a new PersonItemAllOfPictureIdAllOfPictures 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.
NewPersonItemAllOfPictureIdAllOfPicturesWithDefaults instantiates a new PersonItemAllOfPictureIdAllOfPictures 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.
NewPersonItemAllOfPictureIdWithDefaults instantiates a new PersonItemAllOfPictureId 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.
NewPersonItemWithDefaults instantiates a new PersonItem 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.
NewPersonsCollectionResponseObject instantiates a new PersonsCollectionResponseObject 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.
NewPersonsCollectionResponseObjectWithDefaults instantiates a new PersonsCollectionResponseObject 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.
NewPipelineDetails instantiates a new PipelineDetails 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.
NewPipelineDetailsAllOfDealsSummary instantiates a new PipelineDetailsAllOfDealsSummary 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.
NewPipelineDetailsAllOfDealsSummaryPerCurrency instantiates a new PipelineDetailsAllOfDealsSummaryPerCurrency 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.
NewPipelineDetailsAllOfDealsSummaryPerCurrencyFull instantiates a new PipelineDetailsAllOfDealsSummaryPerCurrencyFull 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.
NewPipelineDetailsAllOfDealsSummaryPerCurrencyFullCURRENCYID instantiates a new PipelineDetailsAllOfDealsSummaryPerCurrencyFullCURRENCYID 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.
NewPipelineDetailsAllOfDealsSummaryPerCurrencyFullCURRENCYIDWithDefaults instantiates a new PipelineDetailsAllOfDealsSummaryPerCurrencyFullCURRENCYID 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.
NewPipelineDetailsAllOfDealsSummaryPerCurrencyFullWithDefaults instantiates a new PipelineDetailsAllOfDealsSummaryPerCurrencyFull 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.
NewPipelineDetailsAllOfDealsSummaryPerCurrencyWithDefaults instantiates a new PipelineDetailsAllOfDealsSummaryPerCurrency 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.
NewPipelineDetailsAllOfDealsSummaryPerStages instantiates a new PipelineDetailsAllOfDealsSummaryPerStages 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.
NewPipelineDetailsAllOfDealsSummaryPerStagesSTAGEID instantiates a new PipelineDetailsAllOfDealsSummaryPerStagesSTAGEID 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.
NewPipelineDetailsAllOfDealsSummaryPerStagesSTAGEIDCURRENCYID instantiates a new PipelineDetailsAllOfDealsSummaryPerStagesSTAGEIDCURRENCYID 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.
NewPipelineDetailsAllOfDealsSummaryPerStagesSTAGEIDCURRENCYIDWithDefaults instantiates a new PipelineDetailsAllOfDealsSummaryPerStagesSTAGEIDCURRENCYID 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.
NewPipelineDetailsAllOfDealsSummaryPerStagesSTAGEIDWithDefaults instantiates a new PipelineDetailsAllOfDealsSummaryPerStagesSTAGEID 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.
NewPipelineDetailsAllOfDealsSummaryPerStagesWithDefaults instantiates a new PipelineDetailsAllOfDealsSummaryPerStages 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.
NewPipelineDetailsAllOfDealsSummaryWithDefaults instantiates a new PipelineDetailsAllOfDealsSummary 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.
NewPipelineDetailsWithDefaults instantiates a new PipelineDetails 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.
NewPipelineRequest instantiates a new PipelineRequest 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.
NewPipelineRequest1 instantiates a new PipelineRequest1 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.
NewPipelineRequest1WithDefaults instantiates a new PipelineRequest1 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.
NewPipelineRequestWithDefaults instantiates a new PipelineRequest 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.
NewPostFilterResponse200 instantiates a new PostFilterResponse200 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.
NewPostFilterResponse200AllOfData instantiates a new PostFilterResponse200AllOfData 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.
NewPostFilterResponse200AllOfDataWithDefaults instantiates a new PostFilterResponse200AllOfData 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.
NewPostFilterResponse200WithDefaults instantiates a new PostFilterResponse200 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.
NewProductField instantiates a new ProductField 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.
NewProductFieldWithDefaults instantiates a new ProductField 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.
NewProjectPutPlanItemBodyObject instantiates a new ProjectPutPlanItemBodyObject 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.
NewProjectPutPlanItemBodyObjectWithDefaults instantiates a new ProjectPutPlanItemBodyObject 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.
NewProjectResponseObject instantiates a new ProjectResponseObject 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.
NewProjectResponseObjectWithDefaults instantiates a new ProjectResponseObject 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.
NewPutRolePipelinesBody instantiates a new PutRolePipelinesBody 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.
NewPutRolePipelinesBodyWithDefaults instantiates a new PutRolePipelinesBody 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.
NewReceiveMessage200Response instantiates a new ReceiveMessage200Response 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.
NewReceiveMessage200ResponseWithDefaults instantiates a new ReceiveMessage200Response 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.
NewReceiveMessage400Response instantiates a new ReceiveMessage400Response 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.
NewReceiveMessage400ResponseAdditionalData instantiates a new ReceiveMessage400ResponseAdditionalData 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.
NewReceiveMessage400ResponseAdditionalDataWithDefaults instantiates a new ReceiveMessage400ResponseAdditionalData 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.
NewReceiveMessage400ResponseWithDefaults instantiates a new ReceiveMessage400Response 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.
NewReceiveMessageRequest instantiates a new ReceiveMessageRequest 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.
NewReceiveMessageRequestAttachmentsInner instantiates a new ReceiveMessageRequestAttachmentsInner 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.
NewReceiveMessageRequestAttachmentsInnerWithDefaults instantiates a new ReceiveMessageRequestAttachmentsInner 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.
NewReceiveMessageRequestWithDefaults instantiates a new ReceiveMessageRequest 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.
NewRelationshipOrganizationInfoItem instantiates a new RelationshipOrganizationInfoItem 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.
NewRelationshipOrganizationInfoItemWithActiveFlag instantiates a new RelationshipOrganizationInfoItemWithActiveFlag 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.
NewRelationshipOrganizationInfoItemWithActiveFlagWithDefaults instantiates a new RelationshipOrganizationInfoItemWithActiveFlag 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.
NewRelationshipOrganizationInfoItemWithDefaults instantiates a new RelationshipOrganizationInfoItem 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.
NewResponseCallLogObject instantiates a new ResponseCallLogObject 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.
NewResponseCallLogObjectWithDefaults instantiates a new ResponseCallLogObject 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.
NewRoleAssignment instantiates a new RoleAssignment 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.
NewRoleAssignmentWithDefaults instantiates a new RoleAssignment 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.
NewSearchDealsResponse200 instantiates a new SearchDealsResponse200 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.
NewSearchDealsResponse200AllOfData instantiates a new SearchDealsResponse200AllOfData 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.
NewSearchDealsResponse200AllOfDataItemsInner instantiates a new SearchDealsResponse200AllOfDataItemsInner 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.
NewSearchDealsResponse200AllOfDataItemsInnerItem instantiates a new SearchDealsResponse200AllOfDataItemsInnerItem 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.
NewSearchDealsResponse200AllOfDataItemsInnerItemOrganization instantiates a new SearchDealsResponse200AllOfDataItemsInnerItemOrganization 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.
NewSearchDealsResponse200AllOfDataItemsInnerItemOrganizationWithDefaults instantiates a new SearchDealsResponse200AllOfDataItemsInnerItemOrganization 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.
NewSearchDealsResponse200AllOfDataItemsInnerItemOwner instantiates a new SearchDealsResponse200AllOfDataItemsInnerItemOwner 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.
NewSearchDealsResponse200AllOfDataItemsInnerItemOwnerWithDefaults instantiates a new SearchDealsResponse200AllOfDataItemsInnerItemOwner 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.
NewSearchDealsResponse200AllOfDataItemsInnerItemPerson instantiates a new SearchDealsResponse200AllOfDataItemsInnerItemPerson 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.
NewSearchDealsResponse200AllOfDataItemsInnerItemPersonWithDefaults instantiates a new SearchDealsResponse200AllOfDataItemsInnerItemPerson 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.
NewSearchDealsResponse200AllOfDataItemsInnerItemStage instantiates a new SearchDealsResponse200AllOfDataItemsInnerItemStage 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.
NewSearchDealsResponse200AllOfDataItemsInnerItemStageWithDefaults instantiates a new SearchDealsResponse200AllOfDataItemsInnerItemStage 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.
NewSearchDealsResponse200AllOfDataItemsInnerItemWithDefaults instantiates a new SearchDealsResponse200AllOfDataItemsInnerItem 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.
NewSearchDealsResponse200AllOfDataItemsInnerWithDefaults instantiates a new SearchDealsResponse200AllOfDataItemsInner 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.
NewSearchDealsResponse200AllOfDataWithDefaults instantiates a new SearchDealsResponse200AllOfData 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.
NewSearchDealsResponse200WithDefaults instantiates a new SearchDealsResponse200 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.
NewSearchItemByFieldResponse200 instantiates a new SearchItemByFieldResponse200 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.
NewSearchItemByFieldResponse200AllOfDataInner instantiates a new SearchItemByFieldResponse200AllOfDataInner 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.
NewSearchItemByFieldResponse200AllOfDataInnerWithDefaults instantiates a new SearchItemByFieldResponse200AllOfDataInner 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.
NewSearchItemByFieldResponse200WithDefaults instantiates a new SearchItemByFieldResponse200 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.
NewSearchItemResponse200 instantiates a new SearchItemResponse200 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.
NewSearchItemResponse200AllOfData instantiates a new SearchItemResponse200AllOfData 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.
NewSearchItemResponse200AllOfDataItemsInner instantiates a new SearchItemResponse200AllOfDataItemsInner 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.
NewSearchItemResponse200AllOfDataItemsInnerWithDefaults instantiates a new SearchItemResponse200AllOfDataItemsInner 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.
NewSearchItemResponse200AllOfDataWithDefaults instantiates a new SearchItemResponse200AllOfData 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.
NewSearchItemResponse200WithDefaults instantiates a new SearchItemResponse200 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.
NewSearchLeadsResponse200 instantiates a new SearchLeadsResponse200 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.
NewSearchLeadsResponse200AllOfData instantiates a new SearchLeadsResponse200AllOfData 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.
NewSearchLeadsResponse200AllOfDataItemsInner instantiates a new SearchLeadsResponse200AllOfDataItemsInner 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.
NewSearchLeadsResponse200AllOfDataItemsInnerItem instantiates a new SearchLeadsResponse200AllOfDataItemsInnerItem 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.
NewSearchLeadsResponse200AllOfDataItemsInnerItemOrganization instantiates a new SearchLeadsResponse200AllOfDataItemsInnerItemOrganization 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.
NewSearchLeadsResponse200AllOfDataItemsInnerItemOrganizationWithDefaults instantiates a new SearchLeadsResponse200AllOfDataItemsInnerItemOrganization 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.
NewSearchLeadsResponse200AllOfDataItemsInnerItemOwner instantiates a new SearchLeadsResponse200AllOfDataItemsInnerItemOwner 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.
NewSearchLeadsResponse200AllOfDataItemsInnerItemOwnerWithDefaults instantiates a new SearchLeadsResponse200AllOfDataItemsInnerItemOwner 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.
NewSearchLeadsResponse200AllOfDataItemsInnerItemPerson instantiates a new SearchLeadsResponse200AllOfDataItemsInnerItemPerson 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.
NewSearchLeadsResponse200AllOfDataItemsInnerItemPersonWithDefaults instantiates a new SearchLeadsResponse200AllOfDataItemsInnerItemPerson 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.
NewSearchLeadsResponse200AllOfDataItemsInnerItemWithDefaults instantiates a new SearchLeadsResponse200AllOfDataItemsInnerItem 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.
NewSearchLeadsResponse200AllOfDataItemsInnerWithDefaults instantiates a new SearchLeadsResponse200AllOfDataItemsInner 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.
NewSearchLeadsResponse200AllOfDataWithDefaults instantiates a new SearchLeadsResponse200AllOfData 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.
NewSearchLeadsResponse200WithDefaults instantiates a new SearchLeadsResponse200 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.
NewSearchOrganizationResponse200 instantiates a new SearchOrganizationResponse200 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.
NewSearchOrganizationResponse200AllOfData instantiates a new SearchOrganizationResponse200AllOfData 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.
NewSearchOrganizationResponse200AllOfDataItemsInner instantiates a new SearchOrganizationResponse200AllOfDataItemsInner 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.
NewSearchOrganizationResponse200AllOfDataItemsInnerItem instantiates a new SearchOrganizationResponse200AllOfDataItemsInnerItem 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.
NewSearchOrganizationResponse200AllOfDataItemsInnerItemWithDefaults instantiates a new SearchOrganizationResponse200AllOfDataItemsInnerItem 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.
NewSearchOrganizationResponse200AllOfDataItemsInnerWithDefaults instantiates a new SearchOrganizationResponse200AllOfDataItemsInner 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.
NewSearchOrganizationResponse200AllOfDataWithDefaults instantiates a new SearchOrganizationResponse200AllOfData 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.
NewSearchOrganizationResponse200WithDefaults instantiates a new SearchOrganizationResponse200 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.
NewSearchPersonsResponse200 instantiates a new SearchPersonsResponse200 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.
NewSearchPersonsResponse200AllOfData instantiates a new SearchPersonsResponse200AllOfData 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.
NewSearchPersonsResponse200AllOfDataItemsInner instantiates a new SearchPersonsResponse200AllOfDataItemsInner 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.
NewSearchPersonsResponse200AllOfDataItemsInnerItem instantiates a new SearchPersonsResponse200AllOfDataItemsInnerItem 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.
NewSearchPersonsResponse200AllOfDataItemsInnerItemOrganization instantiates a new SearchPersonsResponse200AllOfDataItemsInnerItemOrganization 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.
NewSearchPersonsResponse200AllOfDataItemsInnerItemOrganizationWithDefaults instantiates a new SearchPersonsResponse200AllOfDataItemsInnerItemOrganization 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.
NewSearchPersonsResponse200AllOfDataItemsInnerItemOwner instantiates a new SearchPersonsResponse200AllOfDataItemsInnerItemOwner 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.
NewSearchPersonsResponse200AllOfDataItemsInnerItemOwnerWithDefaults instantiates a new SearchPersonsResponse200AllOfDataItemsInnerItemOwner 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.
NewSearchPersonsResponse200AllOfDataItemsInnerItemWithDefaults instantiates a new SearchPersonsResponse200AllOfDataItemsInnerItem 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.
NewSearchPersonsResponse200AllOfDataItemsInnerWithDefaults instantiates a new SearchPersonsResponse200AllOfDataItemsInner 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.
NewSearchPersonsResponse200AllOfDataWithDefaults instantiates a new SearchPersonsResponse200AllOfData 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.
NewSearchPersonsResponse200WithDefaults instantiates a new SearchPersonsResponse200 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.
NewSearchProductsResponse200 instantiates a new SearchProductsResponse200 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.
NewSearchProductsResponse200AllOfData instantiates a new SearchProductsResponse200AllOfData 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.
NewSearchProductsResponse200AllOfDataItemsInner instantiates a new SearchProductsResponse200AllOfDataItemsInner 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.
NewSearchProductsResponse200AllOfDataItemsInnerItem instantiates a new SearchProductsResponse200AllOfDataItemsInnerItem 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.
NewSearchProductsResponse200AllOfDataItemsInnerItemOwner instantiates a new SearchProductsResponse200AllOfDataItemsInnerItemOwner 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.
NewSearchProductsResponse200AllOfDataItemsInnerItemOwnerWithDefaults instantiates a new SearchProductsResponse200AllOfDataItemsInnerItemOwner 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.
NewSearchProductsResponse200AllOfDataItemsInnerItemWithDefaults instantiates a new SearchProductsResponse200AllOfDataItemsInnerItem 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.
NewSearchProductsResponse200AllOfDataItemsInnerWithDefaults instantiates a new SearchProductsResponse200AllOfDataItemsInner 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.
NewSearchProductsResponse200AllOfDataWithDefaults instantiates a new SearchProductsResponse200AllOfData 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.
NewSearchProductsResponse200WithDefaults instantiates a new SearchProductsResponse200 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.
NewSinglePermissionSetResponse200 instantiates a new SinglePermissionSetResponse200 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.
NewSinglePermissionSetResponse200WithDefaults instantiates a new SinglePermissionSetResponse200 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.
NewStageResponse200 instantiates a new StageResponse200 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.
NewStageResponse200Data instantiates a new StageResponse200Data 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.
NewStageResponse200DataWithDefaults instantiates a new StageResponse200Data 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.
NewStageResponse200WithDefaults instantiates a new StageResponse200 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.
NewSubRole instantiates a new SubRole 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.
NewSubRoleWithDefaults instantiates a new SubRole 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.
NewSubscriptionAddonsResponse200 instantiates a new SubscriptionAddonsResponse200 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.
NewSubscriptionAddonsResponse200WithDefaults instantiates a new SubscriptionAddonsResponse200 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.
NewSubscriptionsIdResponse200 instantiates a new SubscriptionsIdResponse200 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.
NewSubscriptionsIdResponse200AllOfData instantiates a new SubscriptionsIdResponse200AllOfData 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.
NewSubscriptionsIdResponse200AllOfDataWithDefaults instantiates a new SubscriptionsIdResponse200AllOfData 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.
NewSubscriptionsIdResponse200WithDefaults instantiates a new SubscriptionsIdResponse200 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.
NewTaskResponseObject instantiates a new TaskResponseObject 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.
NewTaskResponseObjectWithDefaults instantiates a new TaskResponseObject 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.
NewTeamResponse200 instantiates a new TeamResponse200 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.
NewTeamResponse200WithDefaults instantiates a new TeamResponse200 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.
NewTeamsResponse200 instantiates a new TeamsResponse200 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.
NewTeamsResponse200WithDefaults instantiates a new TeamsResponse200 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.
NewTemplateResponseObject instantiates a new TemplateResponseObject 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.
NewTemplateResponseObjectWithDefaults instantiates a new TemplateResponseObject 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.
NewUnathorizedResponse instantiates a new UnathorizedResponse 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.
NewUnathorizedResponseWithDefaults instantiates a new UnathorizedResponse 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.
NewUpdateActivityRequest instantiates a new UpdateActivityRequest 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.
NewUpdateActivityRequestWithDefaults instantiates a new UpdateActivityRequest 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.
NewUpdateActivityResponse200 instantiates a new UpdateActivityResponse200 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.
NewUpdateActivityResponse200WithDefaults instantiates a new UpdateActivityResponse200 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.
NewUpdateActivityTypeRequest instantiates a new UpdateActivityTypeRequest 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.
NewUpdateActivityTypeRequestWithDefaults instantiates a new UpdateActivityTypeRequest 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.
NewUpdatedActivityPlanItem200 instantiates a new UpdatedActivityPlanItem200 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.
NewUpdatedActivityPlanItem200WithDefaults instantiates a new UpdatedActivityPlanItem200 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.
NewUpdateDealProductRequest instantiates a new UpdateDealProductRequest 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.
NewUpdateDealProductRequestWithDefaults instantiates a new UpdateDealProductRequest 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.
NewUpdateDealRequest instantiates a new UpdateDealRequest 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.
NewUpdateDealRequestWithDefaults instantiates a new UpdateDealRequest 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.
NewUpdatedTaskPlanItem200 instantiates a new UpdatedTaskPlanItem200 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.
NewUpdatedTaskPlanItem200WithDefaults instantiates a new UpdatedTaskPlanItem200 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.
NewUpdateFieldRequest instantiates a new UpdateFieldRequest 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.
NewUpdateFieldRequestWithDefaults instantiates a new UpdateFieldRequest 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.
NewUpdateFileResponse200 instantiates a new UpdateFileResponse200 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.
NewUpdateFileResponse200WithDefaults instantiates a new UpdateFileResponse200 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.
NewUpdateFilterRequest instantiates a new UpdateFilterRequest 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.
NewUpdateFilterRequestWithDefaults instantiates a new UpdateFilterRequest 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.
NewUpdateLeadLabelRequest instantiates a new UpdateLeadLabelRequest 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.
NewUpdateLeadLabelRequestWithDefaults instantiates a new UpdateLeadLabelRequest 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.
NewUpdateLeadRequest instantiates a new UpdateLeadRequest 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.
NewUpdateLeadRequestValue instantiates a new UpdateLeadRequestValue 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.
NewUpdateLeadRequestValueWithDefaults instantiates a new UpdateLeadRequestValue 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.
NewUpdateLeadRequestWithDefaults instantiates a new UpdateLeadRequest 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.
NewUpdateMailThreadDetailsResponse200 instantiates a new UpdateMailThreadDetailsResponse200 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.
NewUpdateMailThreadDetailsResponse200WithDefaults instantiates a new UpdateMailThreadDetailsResponse200 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.
NewUpdateOrganizationRelationshipResponse200 instantiates a new UpdateOrganizationRelationshipResponse200 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.
NewUpdateOrganizationRelationshipResponse200WithDefaults instantiates a new UpdateOrganizationRelationshipResponse200 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.
NewUpdateOrganizationRequest instantiates a new UpdateOrganizationRequest 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.
NewUpdateOrganizationRequestWithDefaults instantiates a new UpdateOrganizationRequest 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.
NewUpdateOrganizationResponse200 instantiates a new UpdateOrganizationResponse200 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.
NewUpdateOrganizationResponse200WithDefaults instantiates a new UpdateOrganizationResponse200 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.
NewUpdatePersonRequest instantiates a new UpdatePersonRequest 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.
NewUpdatePersonRequestWithDefaults instantiates a new UpdatePersonRequest 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.
NewUpdatePersonResponse200 instantiates a new UpdatePersonResponse200 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.
NewUpdatePersonResponse200WithDefaults instantiates a new UpdatePersonResponse200 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.
NewUpdatePipelineResponse200 instantiates a new UpdatePipelineResponse200 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.
NewUpdatePipelineResponse200AllOfData instantiates a new UpdatePipelineResponse200AllOfData 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.
NewUpdatePipelineResponse200AllOfDataWithDefaults instantiates a new UpdatePipelineResponse200AllOfData 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.
NewUpdatePipelineResponse200WithDefaults instantiates a new UpdatePipelineResponse200 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.
NewUpdateProductFieldResponse200 instantiates a new UpdateProductFieldResponse200 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.
NewUpdateProductFieldResponse200WithDefaults instantiates a new UpdateProductFieldResponse200 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.
NewUpdateProductRequest instantiates a new UpdateProductRequest 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.
NewUpdateProductRequestWithDefaults instantiates a new UpdateProductRequest 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.
NewUpdateProductResponse200 instantiates a new UpdateProductResponse200 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.
NewUpdateProductResponse200WithDefaults instantiates a new UpdateProductResponse200 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.
NewUpdateProjectRequest instantiates a new UpdateProjectRequest 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.
NewUpdateProjectRequest1 instantiates a new UpdateProjectRequest1 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.
NewUpdateProjectRequest1WithDefaults instantiates a new UpdateProjectRequest1 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.
NewUpdateProjectRequestWithDefaults instantiates a new UpdateProjectRequest 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.
NewUpdateProjectResponse200 instantiates a new UpdateProjectResponse200 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.
NewUpdateProjectResponse200WithDefaults instantiates a new UpdateProjectResponse200 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.
NewUpdateRecurringSubscriptionRequest instantiates a new UpdateRecurringSubscriptionRequest 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.
NewUpdateRecurringSubscriptionRequestWithDefaults instantiates a new UpdateRecurringSubscriptionRequest 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.
NewUpdateRoleResponse200 instantiates a new UpdateRoleResponse200 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.
NewUpdateRoleResponse200WithDefaults instantiates a new UpdateRoleResponse200 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.
NewUpdateStageRequest instantiates a new UpdateStageRequest 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.
NewUpdateStageRequestWithDefaults instantiates a new UpdateStageRequest 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.
NewUpdateSubscriptionInstallmentRequest instantiates a new UpdateSubscriptionInstallmentRequest 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.
NewUpdateSubscriptionInstallmentRequestWithDefaults instantiates a new UpdateSubscriptionInstallmentRequest 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.
NewUpdateTaskResponse200 instantiates a new UpdateTaskResponse200 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.
NewUpdateTaskResponse200WithDefaults instantiates a new UpdateTaskResponse200 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.
NewUpdateTeamRequest instantiates a new UpdateTeamRequest 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.
NewUpdateTeamRequestWithDefaults instantiates a new UpdateTeamRequest 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.
NewUpdateUserRequest instantiates a new UpdateUserRequest 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.
NewUpdateUserRequestWithDefaults instantiates a new UpdateUserRequest 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.
NewUserAssignmentsToPermissionSetResponse200 instantiates a new UserAssignmentsToPermissionSetResponse200 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.
NewUserAssignmentsToPermissionSetResponse200AllOfDataInner instantiates a new UserAssignmentsToPermissionSetResponse200AllOfDataInner 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.
NewUserAssignmentsToPermissionSetResponse200AllOfDataInnerWithDefaults instantiates a new UserAssignmentsToPermissionSetResponse200AllOfDataInner 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.
NewUserAssignmentsToPermissionSetResponse200WithDefaults instantiates a new UserAssignmentsToPermissionSetResponse200 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.
NewUserConnectionsResponse200 instantiates a new UserConnectionsResponse200 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.
NewUserConnectionsResponse200AllOfData instantiates a new UserConnectionsResponse200AllOfData 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.
NewUserConnectionsResponse200AllOfDataWithDefaults instantiates a new UserConnectionsResponse200AllOfData 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.
NewUserConnectionsResponse200WithDefaults instantiates a new UserConnectionsResponse200 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.
NewUserDataWithId instantiates a new UserDataWithId 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.
NewUserDataWithIdWithDefaults instantiates a new UserDataWithId 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.
NewUserIds instantiates a new UserIds 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.
NewUserIdsWithDefaults instantiates a new UserIds 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.
NewUserProviderLinkErrorResponse instantiates a new UserProviderLinkErrorResponse 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.
NewUserProviderLinkErrorResponseWithDefaults instantiates a new UserProviderLinkErrorResponse 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.
NewUserProviderLinkSuccessResponse instantiates a new UserProviderLinkSuccessResponse 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.
NewUserProviderLinkSuccessResponseData instantiates a new UserProviderLinkSuccessResponseData 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.
NewUserProviderLinkSuccessResponseDataWithDefaults instantiates a new UserProviderLinkSuccessResponseData 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.
NewUserProviderLinkSuccessResponseWithDefaults instantiates a new UserProviderLinkSuccessResponse 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.
NewUserResponse200 instantiates a new UserResponse200 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.
NewUserResponse200WithDefaults instantiates a new UserResponse200 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.
NewUsersResponse200 instantiates a new UsersResponse200 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.
NewUsersResponse200WithDefaults instantiates a new UsersResponse200 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.
NewWebhookResponse200 instantiates a new WebhookResponse200 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.
NewWebhookResponse200WithDefaults instantiates a new WebhookResponse200 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.
NewWebhooksBadRequestResponse instantiates a new WebhooksBadRequestResponse 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.
NewWebhooksBadRequestResponseWithDefaults instantiates a new WebhooksBadRequestResponse 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.
PtrBool is a helper routine that returns a pointer to given boolean value.
PtrFloat32 is a helper routine that returns a pointer to given float value.
PtrFloat64 is a helper routine that returns a pointer to given float value.
PtrInt is a helper routine that returns a pointer to given integer value.
PtrInt32 is a helper routine that returns a pointer to given integer value.
PtrInt64 is a helper routine that returns a pointer to given integer value.
PtrString is a helper routine that returns a pointer to given string value.
PtrTime is helper routine that returns a pointer to given Time value.

# Variables

ContextAPIKeys takes a string apikey as authentication for the request.
ContextBasicAuth takes BasicAuth as authentication for the request.
ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
ContextOperationServerIndices uses a server configuration from the index mapping.
ContextOperationServerVariables overrides a server configuration variables using operation specific values.
ContextServerIndex uses a server configuration from the index.
ContextServerVariables overrides a server configuration variables.
No description provided by the author
No description provided by the author

# Structs

ActivityCollectionResponseObject struct for ActivityCollectionResponseObject.
ActivityDistributionDataWithAdditionalData struct for ActivityDistributionDataWithAdditionalData.
ActivityDistributionDataWithAdditionalDataAllOfActivityDistribution The distribution of activities related to the organization grouped by the user ID.
ActivityDistributionDataWithAdditionalDataAllOfActivityDistributionASSIGNEDTOUSERID The ID of the user.
ActivityDistributionDataWithAdditionalDataAllOfActivityDistributionASSIGNEDTOUSERIDActivities The count of activities related to the user grouped by activity type.
ActivityResponseObject struct for ActivityResponseObject.
AddActivityRequest struct for AddActivityRequest.
AddActivityResponse200 struct for AddActivityResponse200.
AddActivityResponse200AdditionalData struct for AddActivityResponse200AdditionalData.
AddActivityResponse200RelatedObjects struct for AddActivityResponse200RelatedObjects.
AddActivityResponse200RelatedObjectsOrganization struct for AddActivityResponse200RelatedObjectsOrganization.
AddActivityResponse200RelatedObjectsOrganizationORGANIZATIONID The ID of the organization associated with the item.
AddActivityResponse200RelatedObjectsPerson struct for AddActivityResponse200RelatedObjectsPerson.
AddActivityResponse200RelatedObjectsPersonPERSONID The ID of the person associated with the item.
AddActivityTypeRequest struct for AddActivityTypeRequest.
AddCallLogRequest struct for AddCallLogRequest.
AddChannel200Response struct for AddChannel200Response.
AddChannel200ResponseData struct for AddChannel200ResponseData.
AddChannel400Response struct for AddChannel400Response.
AddChannel400ResponseAdditionalData struct for AddChannel400ResponseAdditionalData.
AddChannel403Response struct for AddChannel403Response.
AddChannel403ResponseAdditionalData struct for AddChannel403ResponseAdditionalData.
AddChannelRequest struct for AddChannelRequest.
AddDealFollowerRequest struct for AddDealFollowerRequest.
AddDealFollowerResponse200 struct for AddDealFollowerResponse200.
AddDealFollowerResponse200Data struct for AddDealFollowerResponse200Data.
AddDealParticipantRequest struct for AddDealParticipantRequest.
AddDealParticipantResponse200 struct for AddDealParticipantResponse200.
AddDealParticipantResponse200Data The object of participant.
AddDealParticipantResponse200RelatedObjects struct for AddDealParticipantResponse200RelatedObjects.
AddDealProductRequest struct for AddDealProductRequest.
AddDealRequest struct for AddDealRequest.
AddFileAndLinkItResponse200 struct for AddFileAndLinkItResponse200.
AddFileResponse200 struct for AddFileResponse200.
AddFilterRequest struct for AddFilterRequest.
AddGoalRequest struct for AddGoalRequest.
AddLeadLabelRequest struct for AddLeadLabelRequest.
AddLeadRequest struct for AddLeadRequest.
AddNoteRequest struct for AddNoteRequest.
AddOrganizationFollowerRequest struct for AddOrganizationFollowerRequest.
AddOrganizationFollowerResponse200 struct for AddOrganizationFollowerResponse200.
AddOrganizationRelationshipRequest struct for AddOrganizationRelationshipRequest.
AddOrganizationRelationshipResponse200 struct for AddOrganizationRelationshipResponse200.
AddOrganizationRelationshipResponse200AllOfData struct for AddOrganizationRelationshipResponse200AllOfData.
AddOrganizationRequest struct for AddOrganizationRequest.
AddOrganizationResponse200 struct for AddOrganizationResponse200.
AddOrUpdateGoalResponse200 struct for AddOrUpdateGoalResponse200.
AddOrUpdateGoalResponse200Data struct for AddOrUpdateGoalResponse200Data.
AddOrUpdateGoalResponse200DataGoal struct for AddOrUpdateGoalResponse200DataGoal.
AddOrUpdateGoalResponse200DataGoalAssignee Who the goal is assigned to.
AddOrUpdateGoalResponse200DataGoalDuration The duration of the goal.
AddOrUpdateGoalResponse200DataGoalExpectedOutcome The expected outcome of the goal.
AddOrUpdateGoalResponse200DataGoalType The type of the goal.
AddOrUpdateGoalResponse200DataGoalTypeParams The parameters that accompany the goal type.
AddOrUpdateLeadLabelResponse200 struct for AddOrUpdateLeadLabelResponse200.
AddOrUpdateRoleSettingRequest struct for AddOrUpdateRoleSettingRequest.
AddOrUpdateRoleSettingResponse200 struct for AddOrUpdateRoleSettingResponse200.
AddOrUpdateRoleSettingResponse200AllOfData The response data.
AddPersonFollowerRequest struct for AddPersonFollowerRequest.
AddPersonFollowerResponse200 struct for AddPersonFollowerResponse200.
AddPersonFollowerResponse200AllOfData struct for AddPersonFollowerResponse200AllOfData.
AddPersonPictureResponse200 struct for AddPersonPictureResponse200.
AddPersonRequest struct for AddPersonRequest.
AddPersonResponse200 struct for AddPersonResponse200.
AddPipelineResponse200 struct for AddPipelineResponse200.
AddPipelineResponse200AllOfData The pipeline object.
AddProductFieldRequest struct for AddProductFieldRequest.
AddProductFollowerRequest struct for AddProductFollowerRequest.
AddProductRequest struct for AddProductRequest.
AddProductRequest1 struct for AddProductRequest1.
AddProjectRequest struct for AddProjectRequest.
AddProjectResponse201 struct for AddProjectResponse201.
AddRecurringSubscriptionRequest struct for AddRecurringSubscriptionRequest.
AddRoleAssignmentRequest struct for AddRoleAssignmentRequest.
AddRoleAssignmentResponse200 struct for AddRoleAssignmentResponse200.
AddRoleAssignmentResponse200AllOfData The response data.
AddRoleRequest The details of the role.
AddRoleResponse200 struct for AddRoleResponse200.
AddRoleResponse200AllOfData The response data.
AddStageRequest struct for AddStageRequest.
AddSubscriptionInstallmentRequest struct for AddSubscriptionInstallmentRequest.
AddTaskRequest struct for AddTaskRequest.
AddTaskResponse201 struct for AddTaskResponse201.
AddTeamRequest struct for AddTeamRequest.
AddTeamUserRequest struct for AddTeamUserRequest.
AddUserProviderLinkRequest struct for AddUserProviderLinkRequest.
AddUserRequest struct for AddUserRequest.
AddUserRequestAccessInner struct for AddUserRequestAccessInner.
AddWebhookRequest struct for AddWebhookRequest.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIClient manages communication with the Pipedrive API v1 API v1.0.0 In most cases there should be only one, shared, APIClient.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIKey provides API key based authentication to a request passed via context using ContextAPIKey.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIResponse stores the API response returned by the server.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
BaseMailThread struct for BaseMailThread.
BaseMailThread1 The mail thread object.
BaseMailThreadAllOfParties Parties of the mail thread.
BaseMailThreadAllOfPartiesToInner Member of a thread.
BaseOrganizationItem struct for BaseOrganizationItem.
BaseOrganizationItemAllOfPictureId struct for BaseOrganizationItemAllOfPictureId.
BaseOrganizationItemWithEditNameFlag struct for BaseOrganizationItemWithEditNameFlag.
BasePipelineWithSelectedFlag struct for BasePipelineWithSelectedFlag.
BaseResponse struct for BaseResponse.
BaseResponse200 struct for BaseResponse200.
BaseRoleRequest The details of the role.
BaseTeam struct for BaseTeam.
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth.
BasicGoalRequest struct for BasicGoalRequest.
BasicPersonRequestEmailInner struct for BasicPersonRequestEmailInner.
CallLogResponse200 struct for CallLogResponse200.
CallLogResponse400 struct for CallLogResponse400.
CallLogResponse403 struct for CallLogResponse403.
CallLogResponse404 struct for CallLogResponse404.
CallLogResponse409 struct for CallLogResponse409.
CallLogResponse410 struct for CallLogResponse410.
CallLogResponse500 struct for CallLogResponse500.
CallLogsResponse struct for CallLogsResponse.
CallLogsResponseAdditionalData struct for CallLogsResponseAdditionalData.
CancelRecurringSubscriptionRequest struct for CancelRecurringSubscriptionRequest.
CommentPostPutObject struct for CommentPostPutObject.
Configuration stores the configuration of the API client.
CreateFieldRequest struct for CreateFieldRequest.
CreateUpdateDeleteActivityTypeResponse200 struct for CreateUpdateDeleteActivityTypeResponse200.
DealCollectionResponseObject struct for DealCollectionResponseObject.
DealNonStrict struct for DealNonStrict.
DealNonStrictAllOfCreatorUserId The creator of the deal.
DealNonStrictWithDetails struct for DealNonStrictWithDetails.
DealNonStrictWithDetailsAllOfAge The lifetime of the deal.
DealNonStrictWithDetailsAllOfAverageTimeToWon The average time to win the deal.
DealNonStrictWithDetailsAllOfStayInPipelineStages The details of the duration of the deal being in each stage of the pipeline.
DealOrganizationDataWithId struct for DealOrganizationDataWithId.
DealPersonDataWithId struct for DealPersonDataWithId.
DealPersonDataWithIdAllOfEmailInner struct for DealPersonDataWithIdAllOfEmailInner.
DealPersonDataWithIdAllOfPhoneInner struct for DealPersonDataWithIdAllOfPhoneInner.
DealResponse200 struct for DealResponse200.
DealStrict struct for DealStrict.
DealUserDataWithId struct for DealUserDataWithId.
DeleteActivitiesResponse200 struct for DeleteActivitiesResponse200.
DeleteActivitiesResponse200Data struct for DeleteActivitiesResponse200Data.
DeleteActivityResponse200 struct for DeleteActivityResponse200.
DeleteActivityResponse200Data struct for DeleteActivityResponse200Data.
DeleteActivityTypesResponse200 struct for DeleteActivityTypesResponse200.
DeleteActivityTypesResponse200AllOfData struct for DeleteActivityTypesResponse200AllOfData.
DeleteChannel200Response struct for DeleteChannel200Response.
DeleteCommentResponse200 struct for DeleteCommentResponse200.
DeleteConversation403Response struct for DeleteConversation403Response.
DeleteConversation403ResponseAdditionalData struct for DeleteConversation403ResponseAdditionalData.
DeleteConversation404Response struct for DeleteConversation404Response.
DeleteConversation404ResponseAdditionalData struct for DeleteConversation404ResponseAdditionalData.
DeleteDealFollowerResponse200 struct for DeleteDealFollowerResponse200.
DeleteDealFollowerResponse200Data struct for DeleteDealFollowerResponse200Data.
DeleteDealParticipantResponse200 struct for DeleteDealParticipantResponse200.
DeleteDealParticipantResponse200Data struct for DeleteDealParticipantResponse200Data.
DeleteDealProductResponse200 struct for DeleteDealProductResponse200.
DeleteDealProductResponse200Data struct for DeleteDealProductResponse200Data.
DeleteDealResponse200 struct for DeleteDealResponse200.
DeleteDealResponse200Data struct for DeleteDealResponse200Data.
DeleteDealsResponse200 struct for DeleteDealsResponse200.
DeleteDealsResponse200Data struct for DeleteDealsResponse200Data.
DeleteFieldResponse200 struct for DeleteFieldResponse200.
DeleteFieldResponse200AllOfData struct for DeleteFieldResponse200AllOfData.
DeleteFieldsResponse200 struct for DeleteFieldsResponse200.
DeleteFieldsResponse200AllOfData struct for DeleteFieldsResponse200AllOfData.
DeleteFileResponse200 struct for DeleteFileResponse200.
DeleteFileResponse200Data struct for DeleteFileResponse200Data.
DeleteFilterResponse200 struct for DeleteFilterResponse200.
DeleteFilterResponse200AllOfData struct for DeleteFilterResponse200AllOfData.
DeleteFiltersResponse200 struct for DeleteFiltersResponse200.
DeleteFiltersResponse200AllOfData struct for DeleteFiltersResponse200AllOfData.
DeleteGoalResponse200 struct for DeleteGoalResponse200.
DeleteMailThreadResponse200 struct for DeleteMailThreadResponse200.
DeleteMailThreadResponse200AllOfData struct for DeleteMailThreadResponse200AllOfData.
DeleteNoteResponse200 struct for DeleteNoteResponse200.
DeleteOrganizationFollowerResponse200 struct for DeleteOrganizationFollowerResponse200.
DeleteOrganizationFollowerResponse200Data struct for DeleteOrganizationFollowerResponse200Data.
DeleteOrganizationRelationshipResponse200 struct for DeleteOrganizationRelationshipResponse200.
DeleteOrganizationRelationshipResponse200AllOfData struct for DeleteOrganizationRelationshipResponse200AllOfData.
DeleteOrganizationResponse200 struct for DeleteOrganizationResponse200.
DeleteOrganizationResponse200Data struct for DeleteOrganizationResponse200Data.
DeleteOrganizationsResponse200 struct for DeleteOrganizationsResponse200.
DeleteOrganizationsResponse200Data struct for DeleteOrganizationsResponse200Data.
DeletePersonResponse200 struct for DeletePersonResponse200.
DeletePersonResponse200AllOfData struct for DeletePersonResponse200AllOfData.
DeletePersonsResponse200 struct for DeletePersonsResponse200.
DeletePersonsResponse200AllOfData struct for DeletePersonsResponse200AllOfData.
DeletePipelineResponse200 struct for DeletePipelineResponse200.
DeletePipelineResponse200Data struct for DeletePipelineResponse200Data.
DeleteProductFieldResponse200 struct for DeleteProductFieldResponse200.
DeleteProductFieldsResponse200 struct for DeleteProductFieldsResponse200.
DeleteProductFieldsResponse200Data struct for DeleteProductFieldsResponse200Data.
DeleteProductFollowerResponse200 struct for DeleteProductFollowerResponse200.
DeleteProductResponse200 struct for DeleteProductResponse200.
DeleteProductResponse200Data struct for DeleteProductResponse200Data.
DeleteProject struct for DeleteProject.
DeleteProjectData struct for DeleteProjectData.
DeleteProjectResponse200 struct for DeleteProjectResponse200.
DeleteRoleAssignmentRequest struct for DeleteRoleAssignmentRequest.
DeleteRoleAssignmentResponse200 struct for DeleteRoleAssignmentResponse200.
DeleteRoleResponse200 struct for DeleteRoleResponse200.
DeleteStageResponse200 struct for DeleteStageResponse200.
DeleteStageResponse200Data struct for DeleteStageResponse200Data.
DeleteStagesResponse200 struct for DeleteStagesResponse200.
DeleteStagesResponse200Data struct for DeleteStagesResponse200Data.
DeleteTask struct for DeleteTask.
DeleteTaskData struct for DeleteTaskData.
DeleteTaskResponse200 struct for DeleteTaskResponse200.
DeleteTeamUserRequest struct for DeleteTeamUserRequest.
DeleteWebhook403Response struct for DeleteWebhook403Response.
DuplicateDealResponse200 struct for DuplicateDealResponse200.
FailResponse struct for FailResponse.
FieldResponse200 struct for FieldResponse200.
FieldsResponse200 struct for FieldsResponse200.
FieldsResponse200AllOfAdditionalData The additional data of the list.
FieldsResponse200AllOfDataInner struct for FieldsResponse200AllOfDataInner.
FullRole struct for FullRole.
GenericOpenAPIError Provides access to the body, error and model on returned errors.
GetActivitiesCollectionResponse200 struct for GetActivitiesCollectionResponse200.
GetActivitiesCollectionResponse200AdditionalData The additional data of the list.
GetActivitiesResponse200 struct for GetActivitiesResponse200.
GetActivitiesResponse200AdditionalData struct for GetActivitiesResponse200AdditionalData.
GetActivitiesResponse200AdditionalDataPagination Pagination details of the list.
GetActivitiesResponse200RelatedObjects struct for GetActivitiesResponse200RelatedObjects.
GetActivitiesResponse200RelatedObjectsDeal struct for GetActivitiesResponse200RelatedObjectsDeal.
GetActivitiesResponse200RelatedObjectsDealDEALID The ID of the deal which is associated with the item.
GetActivitiesResponse200RelatedObjectsOrganization struct for GetActivitiesResponse200RelatedObjectsOrganization.
GetActivitiesResponse200RelatedObjectsOrganizationORGANIZATIONID The ID of the organization associated with the item.
GetActivitiesResponse200RelatedObjectsPerson struct for GetActivitiesResponse200RelatedObjectsPerson.
GetActivitiesResponse200RelatedObjectsPersonPERSONID The ID of the person associated with the item.
GetActivitiesResponse200RelatedObjectsPersonPERSONIDAllOfEmailInner struct for GetActivitiesResponse200RelatedObjectsPersonPERSONIDAllOfEmailInner.
GetActivitiesResponse200RelatedObjectsPersonPERSONIDAllOfPhoneInner struct for GetActivitiesResponse200RelatedObjectsPersonPERSONIDAllOfPhoneInner.
GetActivitiesResponse200RelatedObjectsUser struct for GetActivitiesResponse200RelatedObjectsUser.
GetActivityResponse200 struct for GetActivityResponse200.
GetActivityTypesResponse200 struct for GetActivityTypesResponse200.
GetActivityTypesResponse200AllOfDataInner struct for GetActivityTypesResponse200AllOfDataInner.
GetAddProductAttachementResponse200 struct for GetAddProductAttachementResponse200.
GetAddProductAttachementResponse200Data The added product object attached to the deal.
GetAllMailMessagesOfMailThreadResponse200 struct for GetAllMailMessagesOfMailThreadResponse200.
GetAllMailMessagesOfMailThreadResponse200AllOfDataInner struct for GetAllMailMessagesOfMailThreadResponse200AllOfDataInner.
GetAssociatedActivitiesResponse200 struct for GetAssociatedActivitiesResponse200.
GetAssociatedDealsResponse200 struct for GetAssociatedDealsResponse200.
GetAssociatedDealsResponse200AllOfRelatedObjects struct for GetAssociatedDealsResponse200AllOfRelatedObjects.
GetAssociatedDealsResponse200AllOfRelatedObjectsPipeline struct for GetAssociatedDealsResponse200AllOfRelatedObjectsPipeline.
GetAssociatedDealsResponse200AllOfRelatedObjectsStage struct for GetAssociatedDealsResponse200AllOfRelatedObjectsStage.
GetAssociatedFilesResponse200 struct for GetAssociatedFilesResponse200.
GetAssociatedFilesResponse2001 struct for GetAssociatedFilesResponse2001.
GetAssociatedFilesResponse2001AllOfDataInner The file data.
GetAssociatedFilesResponse200AllOfDataInner The file data.
GetAssociatedFollowersResponse200 struct for GetAssociatedFollowersResponse200.
GetAssociatedFollowersResponse2001 struct for GetAssociatedFollowersResponse2001.
GetAssociatedFollowersResponse2001DataInner struct for GetAssociatedFollowersResponse2001DataInner.
GetAssociatedFollowersResponse200AllOfDataInner struct for GetAssociatedFollowersResponse200AllOfDataInner.
GetAssociatedMailMessagesResponse200 struct for GetAssociatedMailMessagesResponse200.
GetAssociatedMailMessagesResponse200AllOfDataInner struct for GetAssociatedMailMessagesResponse200AllOfDataInner.
GetAssociatedPersonUpdatesResponse200 struct for GetAssociatedPersonUpdatesResponse200.
GetAssociatedPersonUpdatesResponse200AllOfDataInner struct for GetAssociatedPersonUpdatesResponse200AllOfDataInner.
GetAssociatedUpdatesResponse200 struct for GetAssociatedUpdatesResponse200.
GetAssociatedUpdatesResponse200AllOfDataInner struct for GetAssociatedUpdatesResponse200AllOfDataInner.
GetAssociatedUpdatesResponse200AllOfRelatedObjects struct for GetAssociatedUpdatesResponse200AllOfRelatedObjects.
GetChangelogResponse200 struct for GetChangelogResponse200.
GetChangelogResponse200AllOfDataInner struct for GetChangelogResponse200AllOfDataInner.
GetCommentsResponse200 struct for GetCommentsResponse200.
GetCommentsResponse200DataInner struct for GetCommentsResponse200DataInner.
GetCurrenciesResponse200 struct for GetCurrenciesResponse200.
GetCurrenciesResponse200DataInner struct for GetCurrenciesResponse200DataInner.
GetCurrentUserResponse200 struct for GetCurrentUserResponse200.
GetCurrentUserResponse200AllOfData struct for GetCurrentUserResponse200AllOfData.
GetCurrentUserResponse200AllOfDataAllOfLanguage The user language details.
GetDealActivitiesResponse200 struct for GetDealActivitiesResponse200.
GetDealActivitiesResponse200AllOfRelatedObjects struct for GetDealActivitiesResponse200AllOfRelatedObjects.
GetDealParticipantsResponse200 struct for GetDealParticipantsResponse200.
GetDealResponse200 struct for GetDealResponse200.
GetDealResponse200AdditionalData struct for GetDealResponse200AdditionalData.
GetDealResponse200RelatedObjects struct for GetDealResponse200RelatedObjects.
GetDealsCollectionResponse200 struct for GetDealsCollectionResponse200.
GetDealsResponse200 struct for GetDealsResponse200.
GetDealsResponse200RelatedObjects struct for GetDealsResponse200RelatedObjects.
GetDealsResponse200RelatedObjectsOrganization The organization which is associated with the deal.
GetDealsResponse200RelatedObjectsPerson The person who is associated with the deal.
GetDealsResponse200RelatedObjectsUser The user who is associated with the deal.
GetDealsSummaryResponse200 struct for GetDealsSummaryResponse200.
GetDealsSummaryResponse200Data The summary of deals.
GetDealsSummaryResponse200DataValuesTotal The total values of the deals grouped by deal currency.
GetDealsSummaryResponse200DataWeightedValuesTotal The total weighted values of the deals grouped by deal currency.
GetDealsTimelineResponse200 struct for GetDealsTimelineResponse200.
GetDealsTimelineResponse200Data Open and won deals grouped into periods by defined interval, amount and date-type dealField (`field_key`).
GetDealsTimelineResponse200DataTotals The total values of deals for the given period.
GetDealUpdatesResponse200 struct for GetDealUpdatesResponse200.
GetDealUpdatesResponse200AllOfDataInner struct for GetDealUpdatesResponse200AllOfDataInner.
GetDealUpdatesResponse200AllOfRelatedObjects struct for GetDealUpdatesResponse200AllOfRelatedObjects.
GetFileResponse200 struct for GetFileResponse200.
GetFilesResponse200 struct for GetFilesResponse200.
GetFilesResponse200AdditionalData struct for GetFilesResponse200AdditionalData.
GetFilesResponse200DataInner The file data.
GetFilterResponse200 struct for GetFilterResponse200.
GetFiltersResponse200 struct for GetFiltersResponse200.
GetFiltersResponse200AllOfDataInner The filter object.
GetGoalResultResponse200 struct for GetGoalResultResponse200.
GetGoalResultResponse200Data struct for GetGoalResultResponse200Data.
GetGoalsResponse200 struct for GetGoalsResponse200.
GetGoalsResponse200Data struct for GetGoalsResponse200Data.
GetLeadLabelsResponse200 struct for GetLeadLabelsResponse200.
GetLeadLabelsResponse200DataInner struct for GetLeadLabelsResponse200DataInner.
GetLeadSourcesResponse200 struct for GetLeadSourcesResponse200.
GetLeadSourcesResponse200DataInner struct for GetLeadSourcesResponse200DataInner.
GetLeadsResponse200 struct for GetLeadsResponse200.
GetLeadsResponse200DataInner struct for GetLeadsResponse200DataInner.
GetLeadsResponse200DataInnerValue The potential value of the lead represented by a JSON object: `{ \"amount\": 200, \"currency\": \"EUR\" }`.
GetMailThreadsResponse200 struct for GetMailThreadsResponse200.
GetNoteFieldsResponse200 struct for GetNoteFieldsResponse200.
GetNoteFieldsResponse200AllOfDataInner struct for GetNoteFieldsResponse200AllOfDataInner.
GetNoteFieldsResponse200AllOfDataInnerOptionsInner struct for GetNoteFieldsResponse200AllOfDataInnerOptionsInner.
GetNotesResponse200 struct for GetNotesResponse200.
GetNotesResponse200AdditionalData struct for GetNotesResponse200AdditionalData.
GetNotesResponse200AdditionalDataPagination The pagination details of the list.
GetNotesResponse200DataInner struct for GetNotesResponse200DataInner.
GetNotesResponse200DataInnerDeal The deal this note is attached to.
GetNotesResponse200DataInnerOrganization The organization the note is attached to.
GetNotesResponse200DataInnerPerson The person the note is attached to.
GetNotesResponse200DataInnerUser The user who created the note.
GetOneMailThreadResponse200 struct for GetOneMailThreadResponse200.
GetOneMailThreadResponse200AllOfData The mail thread object.
GetOrganizationRelationshipResponse200 struct for GetOrganizationRelationshipResponse200.
GetOrganizationRelationshipsResponse200 struct for GetOrganizationRelationshipsResponse200.
GetOrganizationRelationshipsResponse200AllOfRelatedObjects struct for GetOrganizationRelationshipsResponse200AllOfRelatedObjects.
GetOrganizationResponse200 struct for GetOrganizationResponse200.
GetOrganizationResponse200AllOfAdditionalData struct for GetOrganizationResponse200AllOfAdditionalData.
GetOrganizationResponse200AllOfAdditionalDataFollowers The follower that is associated with the item.
GetOrganizationResponse200AllOfAdditionalDataFollowersFOLLOWERUSERID The user ID of the follower.
GetOrganizationsCollection200Response struct for GetOrganizationsCollection200Response.
GetOrganizationsResponse200 struct for GetOrganizationsResponse200.
GetOrganizationsResponse200AllOfRelatedObjects struct for GetOrganizationsResponse200AllOfRelatedObjects.
GetOrganizationsResponse200AllOfRelatedObjectsPicture The picture that is associated with the item.
GetOrganizationsResponse200AllOfRelatedObjectsPicturePICTUREID The ID of the picture.
GetParticipantsChangelog200 struct for GetParticipantsChangelog200.
GetPermissionSetsResponse200 struct for GetPermissionSetsResponse200.
GetPermissionSetsResponse200AllOfDataInner struct for GetPermissionSetsResponse200AllOfDataInner.
GetPersonProductsResponse200 struct for GetPersonProductsResponse200.
GetPersonProductsResponse200AllOfDataInner struct for GetPersonProductsResponse200AllOfDataInner.
GetPersonProductsResponse200AllOfDataInnerDEALID struct for GetPersonProductsResponse200AllOfDataInnerDEALID.
GetPersonProductsResponse200AllOfDataInnerDEALIDDeal struct for GetPersonProductsResponse200AllOfDataInnerDEALIDDeal.
GetPersonProductsResponse200AllOfDataInnerDEALIDProduct struct for GetPersonProductsResponse200AllOfDataInnerDEALIDProduct.
GetPersonResponse200 struct for GetPersonResponse200.
GetPersonResponse200AllOfAdditionalData struct for GetPersonResponse200AllOfAdditionalData.
GetPersonsCollection200Response struct for GetPersonsCollection200Response.
GetPersonsResponse200 struct for GetPersonsResponse200.
GetPipelineConversionStatisticsResponse200 struct for GetPipelineConversionStatisticsResponse200.
GetPipelineConversionStatisticsResponse200AllOfData The pipeline object.
GetPipelineConversionStatisticsResponse200AllOfDataStageConversionsInner struct for GetPipelineConversionStatisticsResponse200AllOfDataStageConversionsInner.
GetPipelineMovementStatisticsResponse200 struct for GetPipelineMovementStatisticsResponse200.
GetPipelineMovementStatisticsResponse200AllOfData The pipeline object.
GetPipelineMovementStatisticsResponse200AllOfDataAverageAgeInDays The moved deals average age in days.
GetPipelineMovementStatisticsResponse200AllOfDataAverageAgeInDaysByStagesInner The moved deals average age by the stage.
GetPipelineMovementStatisticsResponse200AllOfDataMovementsBetweenStages Movements between stages.
GetPipelineMovementStatisticsResponse200AllOfDataNewDeals Deals summary.
GetPipelineMovementStatisticsResponse200AllOfDataNewDealsFormattedValues The formatted values of the deals.
GetPipelineMovementStatisticsResponse200AllOfDataNewDealsValues The values of the deals.
GetPipelineResponse200 struct for GetPipelineResponse200.
GetPipelinesResponse200 struct for GetPipelinesResponse200.
GetProductAttachementResponse200 struct for GetProductAttachementResponse200.
GetProductAttachementResponse200Data The updated product object attached to the deal.
GetProductFieldResponse200 struct for GetProductFieldResponse200.
GetProductFieldResponse200Data All data for the product field.
GetProductFieldsResponse200 struct for GetProductFieldsResponse200.
GetProductFollowersResponseSuccess struct for GetProductFollowersResponseSuccess.
GetProductFollowersResponseSuccessAllOfDataInner struct for GetProductFollowersResponseSuccessAllOfDataInner.
GetproductResponse200 struct for GetproductResponse200.
GetproductResponse200Data struct for GetproductResponse200Data.
GetProductsResponse200 struct for GetProductsResponse200.
GetProjectBoardResponse200 struct for GetProjectBoardResponse200.
GetProjectBoardsResponse200 struct for GetProjectBoardsResponse200.
GetProjectBoardsResponse200DataInner struct for GetProjectBoardsResponse200DataInner.
GetProjectGroupsResponse200 struct for GetProjectGroupsResponse200.
GetProjectGroupsResponse200DataInner struct for GetProjectGroupsResponse200DataInner.
GetProjectPhaseResponse200 struct for GetProjectPhaseResponse200.
GetProjectPhasesResponse200 struct for GetProjectPhasesResponse200.
GetProjectPhasesResponse200DataInner struct for GetProjectPhasesResponse200DataInner.
GetProjectPlanResponse200 struct for GetProjectPlanResponse200.
GetProjectPlanResponse200DataInner struct for GetProjectPlanResponse200DataInner.
GetProjectResponse200 struct for GetProjectResponse200.
GetProjectsResponse200 struct for GetProjectsResponse200.
GetProjectTemplateResponse200 struct for GetProjectTemplateResponse200.
GetProjectTemplatesResponse200 struct for GetProjectTemplatesResponse200.
GetRecentsResponse200 struct for GetRecentsResponse200.
GetRecentsResponse200AdditionalData struct for GetRecentsResponse200AdditionalData.
GetRecentsResponse200DataInner struct for GetRecentsResponse200DataInner.
GetRecentsResponse200DataInnerAnyOf struct for GetRecentsResponse200DataInnerAnyOf.
GetRecentsResponse200DataInnerAnyOf1 struct for GetRecentsResponse200DataInnerAnyOf1.
GetRecentsResponse200DataInnerAnyOf10 struct for GetRecentsResponse200DataInnerAnyOf10.
GetRecentsResponse200DataInnerAnyOf11 struct for GetRecentsResponse200DataInnerAnyOf11.
GetRecentsResponse200DataInnerAnyOf11Data struct for GetRecentsResponse200DataInnerAnyOf11Data.
GetRecentsResponse200DataInnerAnyOf11DataAccessInner struct for GetRecentsResponse200DataInnerAnyOf11DataAccessInner.
GetRecentsResponse200DataInnerAnyOf2 struct for GetRecentsResponse200DataInnerAnyOf2.
GetRecentsResponse200DataInnerAnyOf3 struct for GetRecentsResponse200DataInnerAnyOf3.
GetRecentsResponse200DataInnerAnyOf4 struct for GetRecentsResponse200DataInnerAnyOf4.
GetRecentsResponse200DataInnerAnyOf5 struct for GetRecentsResponse200DataInnerAnyOf5.
GetRecentsResponse200DataInnerAnyOf6 struct for GetRecentsResponse200DataInnerAnyOf6.
GetRecentsResponse200DataInnerAnyOf7 struct for GetRecentsResponse200DataInnerAnyOf7.
GetRecentsResponse200DataInnerAnyOf8 struct for GetRecentsResponse200DataInnerAnyOf8.
GetRecentsResponse200DataInnerAnyOf9 struct for GetRecentsResponse200DataInnerAnyOf9.
GetRecentsResponse200DataInnerAnyOf9Data struct for GetRecentsResponse200DataInnerAnyOf9Data.
GetRolePipelines200 struct for GetRolePipelines200.
GetRolePipelines200AllOfData The response data.
GetRoleResponse200 struct for GetRoleResponse200.
GetRoleResponse200AllOfAdditionalData The additional data in the role.
GetRoleResponse200AllOfAdditionalDataSettings The settings for the role.
GetRoleSettingsResponse200 struct for GetRoleSettingsResponse200.
GetRolesResponse200 struct for GetRolesResponse200.
GetRolesResponse200AllOfAdditionalData The additional data in the role list.
GetRolesResponse200AllOfAdditionalDataPagination The pagination details in the role list.
GetStageDealsResponse200 struct for GetStageDealsResponse200.
GetStageResponse200 struct for GetStageResponse200.
GetStageResponse200Data The stage object.
GetStagesResponse200 struct for GetStagesResponse200.
GetStagesResponse200DataInner struct for GetStagesResponse200DataInner.
GetTaskResponse200 struct for GetTaskResponse200.
GetTasksResponse200 struct for GetTasksResponse200.
GetTokensResponse200 struct for GetTokensResponse200.
GetUserPermissionsResponse200 struct for GetUserPermissionsResponse200.
GetUserPermissionsResponse200AllOfData struct for GetUserPermissionsResponse200AllOfData.
GetUserRoleAssignmentsResponse200 struct for GetUserRoleAssignmentsResponse200.
GetUserSettingsResponse200 struct for GetUserSettingsResponse200.
GetUserSettingsResponse200AllOfData struct for GetUserSettingsResponse200AllOfData.
GetWebhooksResponse200 struct for GetWebhooksResponse200.
GetWebhooksResponse200AllOfDataInner struct for GetWebhooksResponse200AllOfDataInner.
LeadIdResponse200 struct for LeadIdResponse200.
LeadIdResponse200Data struct for LeadIdResponse200Data.
LeadResponse404 struct for LeadResponse404.
LinkFileToItemResponse200 struct for LinkFileToItemResponse200.
ListPermittedUsersResponse200 struct for ListPermittedUsersResponse200.
ListPermittedUsersResponse2001 struct for ListPermittedUsersResponse2001.
ListPermittedUsersResponse200AllOfData struct for ListPermittedUsersResponse200AllOfData.
ListPersonsResponse200 struct for ListPersonsResponse200.
ListPersonsResponse200AllOfRelatedObjects struct for ListPersonsResponse200AllOfRelatedObjects.
ListProductsResponse200 struct for ListProductsResponse200.
ListProductsResponse200AllOfAdditionalData struct for ListProductsResponse200AllOfAdditionalData.
ListProductsResponse200AllOfData struct for ListProductsResponse200AllOfData.
ListProductsResponse200AllOfDataInner struct for ListProductsResponse200AllOfDataInner.
ListProductsResponse200AllOfDataInnerProduct struct for ListProductsResponse200AllOfDataInnerProduct.
ListProductsResponse200AllOfDataItemsInner struct for ListProductsResponse200AllOfDataItemsInner.
ListProductsResponse200AllOfDataItemsInnerProduct struct for ListProductsResponse200AllOfDataItemsInnerProduct.
ListProductsResponse200AllOfRelatedObjects struct for ListProductsResponse200AllOfRelatedObjects.
MailMessageItemForList struct for MailMessageItemForList.
MailMessageItemForListAllOfFromInner struct for MailMessageItemForListAllOfFromInner.
MailMessageResponse200 struct for MailMessageResponse200.
MailMessageResponse200AllOfData struct for MailMessageResponse200AllOfData.
MergeDealsRequest struct for MergeDealsRequest.
MergeDealsResponse200 struct for MergeDealsResponse200.
MergeDealsResponse200Data struct for MergeDealsResponse200Data.
MergeOrganizationsRequest struct for MergeOrganizationsRequest.
MergeOrganizationsResponse200 struct for MergeOrganizationsResponse200.
MergeOrganizationsResponse200Data struct for MergeOrganizationsResponse200Data.
MergePersonItem struct for MergePersonItem.
MergePersonsRequest struct for MergePersonsRequest.
MergePersonsResponse200 struct for MergePersonsResponse200.
NewFollowerResponse200 struct for NewFollowerResponse200.
NewFollowerResponse200Data struct for NewFollowerResponse200Data.
NoteRequest struct for NoteRequest.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
OneCommentResponse200 struct for OneCommentResponse200.
OneLeadResponse200 struct for OneLeadResponse200.
OneNoteResponse200 struct for OneNoteResponse200.
OrganizationItem struct for OrganizationItem.
OrganizationRelationship struct for OrganizationRelationship.
OrganizationRelationshipDetails struct for OrganizationRelationshipDetails.
OrganizationRelationshipWithCalculatedFields struct for OrganizationRelationshipWithCalculatedFields.
OrganizationsCollectionResponseObject struct for OrganizationsCollectionResponseObject.
Owner struct for Owner.
PaginationDetails Pagination details of the list.
ParticipantChangelogItem struct for ParticipantChangelogItem.
PaymentResponse200 struct for PaymentResponse200.
PaymentResponse200AllOfDataInner struct for PaymentResponse200AllOfDataInner.
PersonItem struct for PersonItem.
PersonItemAllOfEmailInner struct for PersonItemAllOfEmailInner.
PersonItemAllOfPhoneInner struct for PersonItemAllOfPhoneInner.
PersonItemAllOfPictureId struct for PersonItemAllOfPictureId.
PersonItemAllOfPictureIdAllOfPictures struct for PersonItemAllOfPictureIdAllOfPictures.
PersonsCollectionResponseObject struct for PersonsCollectionResponseObject.
PipelineDetails The pipeline object.
PipelineDetailsAllOfDealsSummary Deals summary.
PipelineDetailsAllOfDealsSummaryPerCurrency The currency count summary.
PipelineDetailsAllOfDealsSummaryPerCurrencyFull Full currency summaries.
PipelineDetailsAllOfDealsSummaryPerCurrencyFullCURRENCYID The currency summary.
PipelineDetailsAllOfDealsSummaryPerStages The stage objects containing deals currency information.
PipelineDetailsAllOfDealsSummaryPerStagesSTAGEID The currency summaries per stage.
PipelineDetailsAllOfDealsSummaryPerStagesSTAGEIDCURRENCYID The currency summary.
PipelineRequest struct for PipelineRequest.
PipelineRequest1 struct for PipelineRequest1.
PostFilterResponse200 struct for PostFilterResponse200.
PostFilterResponse200AllOfData struct for PostFilterResponse200AllOfData.
ProductField struct for ProductField.
ProjectPutPlanItemBodyObject struct for ProjectPutPlanItemBodyObject.
ProjectResponseObject struct for ProjectResponseObject.
PutRolePipelinesBody struct for PutRolePipelinesBody.
ReceiveMessage200Response struct for ReceiveMessage200Response.
ReceiveMessage400Response struct for ReceiveMessage400Response.
ReceiveMessage400ResponseAdditionalData struct for ReceiveMessage400ResponseAdditionalData.
ReceiveMessageRequest struct for ReceiveMessageRequest.
ReceiveMessageRequestAttachmentsInner struct for ReceiveMessageRequestAttachmentsInner.
RelationshipOrganizationInfoItem struct for RelationshipOrganizationInfoItem.
RelationshipOrganizationInfoItemWithActiveFlag struct for RelationshipOrganizationInfoItemWithActiveFlag.
ResponseCallLogObject struct for ResponseCallLogObject.
RoleAssignment The assignment data of the role.
SearchDealsResponse200 struct for SearchDealsResponse200.
SearchDealsResponse200AllOfData struct for SearchDealsResponse200AllOfData.
SearchDealsResponse200AllOfDataItemsInner struct for SearchDealsResponse200AllOfDataItemsInner.
SearchDealsResponse200AllOfDataItemsInnerItem struct for SearchDealsResponse200AllOfDataItemsInnerItem.
SearchDealsResponse200AllOfDataItemsInnerItemOrganization struct for SearchDealsResponse200AllOfDataItemsInnerItemOrganization.
SearchDealsResponse200AllOfDataItemsInnerItemOwner struct for SearchDealsResponse200AllOfDataItemsInnerItemOwner.
SearchDealsResponse200AllOfDataItemsInnerItemPerson struct for SearchDealsResponse200AllOfDataItemsInnerItemPerson.
SearchDealsResponse200AllOfDataItemsInnerItemStage struct for SearchDealsResponse200AllOfDataItemsInnerItemStage.
SearchItemByFieldResponse200 struct for SearchItemByFieldResponse200.
SearchItemByFieldResponse200AllOfDataInner struct for SearchItemByFieldResponse200AllOfDataInner.
SearchItemResponse200 struct for SearchItemResponse200.
SearchItemResponse200AllOfData struct for SearchItemResponse200AllOfData.
SearchItemResponse200AllOfDataItemsInner struct for SearchItemResponse200AllOfDataItemsInner.
SearchLeadsResponse200 struct for SearchLeadsResponse200.
SearchLeadsResponse200AllOfData struct for SearchLeadsResponse200AllOfData.
SearchLeadsResponse200AllOfDataItemsInner struct for SearchLeadsResponse200AllOfDataItemsInner.
SearchLeadsResponse200AllOfDataItemsInnerItem struct for SearchLeadsResponse200AllOfDataItemsInnerItem.
SearchLeadsResponse200AllOfDataItemsInnerItemOrganization struct for SearchLeadsResponse200AllOfDataItemsInnerItemOrganization.
SearchLeadsResponse200AllOfDataItemsInnerItemOwner struct for SearchLeadsResponse200AllOfDataItemsInnerItemOwner.
SearchLeadsResponse200AllOfDataItemsInnerItemPerson struct for SearchLeadsResponse200AllOfDataItemsInnerItemPerson.
SearchOrganizationResponse200 struct for SearchOrganizationResponse200.
SearchOrganizationResponse200AllOfData struct for SearchOrganizationResponse200AllOfData.
SearchOrganizationResponse200AllOfDataItemsInner struct for SearchOrganizationResponse200AllOfDataItemsInner.
SearchOrganizationResponse200AllOfDataItemsInnerItem struct for SearchOrganizationResponse200AllOfDataItemsInnerItem.
SearchPersonsResponse200 struct for SearchPersonsResponse200.
SearchPersonsResponse200AllOfData struct for SearchPersonsResponse200AllOfData.
SearchPersonsResponse200AllOfDataItemsInner struct for SearchPersonsResponse200AllOfDataItemsInner.
SearchPersonsResponse200AllOfDataItemsInnerItem struct for SearchPersonsResponse200AllOfDataItemsInnerItem.
SearchPersonsResponse200AllOfDataItemsInnerItemOrganization struct for SearchPersonsResponse200AllOfDataItemsInnerItemOrganization.
SearchPersonsResponse200AllOfDataItemsInnerItemOwner struct for SearchPersonsResponse200AllOfDataItemsInnerItemOwner.
SearchProductsResponse200 struct for SearchProductsResponse200.
SearchProductsResponse200AllOfData struct for SearchProductsResponse200AllOfData.
SearchProductsResponse200AllOfDataItemsInner struct for SearchProductsResponse200AllOfDataItemsInner.
SearchProductsResponse200AllOfDataItemsInnerItem struct for SearchProductsResponse200AllOfDataItemsInnerItem.
SearchProductsResponse200AllOfDataItemsInnerItemOwner struct for SearchProductsResponse200AllOfDataItemsInnerItemOwner.
ServerConfiguration stores the information about a server.
ServerVariable stores the information about a server variable.
SinglePermissionSetResponse200 struct for SinglePermissionSetResponse200.
StageResponse200 struct for StageResponse200.
StageResponse200Data Updated stage object.
SubRole The details of the sub-role.
SubscriptionAddonsResponse200 struct for SubscriptionAddonsResponse200.
SubscriptionsIdResponse200 struct for SubscriptionsIdResponse200.
SubscriptionsIdResponse200AllOfData struct for SubscriptionsIdResponse200AllOfData.
TaskResponseObject struct for TaskResponseObject.
TeamResponse200 struct for TeamResponse200.
TeamsResponse200 struct for TeamsResponse200.
TemplateResponseObject struct for TemplateResponseObject.
UnathorizedResponse struct for UnathorizedResponse.
UpdateActivityRequest struct for UpdateActivityRequest.
UpdateActivityResponse200 struct for UpdateActivityResponse200.
UpdateActivityTypeRequest struct for UpdateActivityTypeRequest.
UpdatedActivityPlanItem200 struct for UpdatedActivityPlanItem200.
UpdateDealProductRequest struct for UpdateDealProductRequest.
UpdateDealRequest struct for UpdateDealRequest.
UpdatedTaskPlanItem200 struct for UpdatedTaskPlanItem200.
UpdateFieldRequest struct for UpdateFieldRequest.
UpdateFileResponse200 struct for UpdateFileResponse200.
UpdateFilterRequest struct for UpdateFilterRequest.
UpdateLeadLabelRequest struct for UpdateLeadLabelRequest.
UpdateLeadRequest struct for UpdateLeadRequest.
UpdateLeadRequestValue The potential value of the lead.
UpdateMailThreadDetailsResponse200 struct for UpdateMailThreadDetailsResponse200.
UpdateOrganizationRelationshipResponse200 struct for UpdateOrganizationRelationshipResponse200.
UpdateOrganizationRequest struct for UpdateOrganizationRequest.
UpdateOrganizationResponse200 struct for UpdateOrganizationResponse200.
UpdatePersonRequest struct for UpdatePersonRequest.
UpdatePersonResponse200 struct for UpdatePersonResponse200.
UpdatePipelineResponse200 struct for UpdatePipelineResponse200.
UpdatePipelineResponse200AllOfData The pipeline object.
UpdateProductFieldResponse200 struct for UpdateProductFieldResponse200.
UpdateProductRequest struct for UpdateProductRequest.
UpdateProductResponse200 struct for UpdateProductResponse200.
UpdateProjectRequest struct for UpdateProjectRequest.
UpdateProjectRequest1 struct for UpdateProjectRequest1.
UpdateProjectResponse200 struct for UpdateProjectResponse200.
UpdateRecurringSubscriptionRequest struct for UpdateRecurringSubscriptionRequest.
UpdateRoleResponse200 struct for UpdateRoleResponse200.
UpdateStageRequest struct for UpdateStageRequest.
UpdateSubscriptionInstallmentRequest struct for UpdateSubscriptionInstallmentRequest.
UpdateTaskResponse200 struct for UpdateTaskResponse200.
UpdateTeamRequest struct for UpdateTeamRequest.
UpdateUserRequest struct for UpdateUserRequest.
UserAssignmentsToPermissionSetResponse200 struct for UserAssignmentsToPermissionSetResponse200.
UserAssignmentsToPermissionSetResponse200AllOfDataInner struct for UserAssignmentsToPermissionSetResponse200AllOfDataInner.
UserConnectionsResponse200 struct for UserConnectionsResponse200.
UserConnectionsResponse200AllOfData The object of UserConnections.
UserDataWithId struct for UserDataWithId.
UserIds struct for UserIds.
UserProviderLinkErrorResponse struct for UserProviderLinkErrorResponse.
UserProviderLinkSuccessResponse struct for UserProviderLinkSuccessResponse.
UserProviderLinkSuccessResponseData struct for UserProviderLinkSuccessResponseData.
UserResponse200 struct for UserResponse200.
UsersResponse200 struct for UsersResponse200.
WebhookResponse200 struct for WebhookResponse200.
WebhooksBadRequestResponse struct for WebhooksBadRequestResponse.

# Interfaces

No description provided by the author

# Type aliases

ActivitiesAPIService ActivitiesAPI service.
ActivityFieldsAPIService ActivityFieldsAPI service.
ActivityTypesAPIService ActivityTypesAPI service.
BillingAPIService BillingAPI service.
CallLogsAPIService CallLogsAPI service.
ChannelsAPIService ChannelsAPI service.
CurrenciesAPIService CurrenciesAPI service.
DealFieldsAPIService DealFieldsAPI service.
DealsAPIService DealsAPI service.
FilesAPIService FilesAPI service.
FiltersAPIService FiltersAPI service.
GoalsAPIService GoalsAPI service.
ItemSearchAPIService ItemSearchAPI service.
LeadLabelsAPIService LeadLabelsAPI service.
LeadsAPIService LeadsAPI service.
LeadSourcesAPIService LeadSourcesAPI service.
LegacyTeamsAPIService LegacyTeamsAPI service.
MailboxAPIService MailboxAPI service.
MeetingsAPIService MeetingsAPI service.
NoteFieldsAPIService NoteFieldsAPI service.
NotesAPIService NotesAPI service.
OauthAPIService OauthAPI service.
OrganizationFieldsAPIService OrganizationFieldsAPI service.
OrganizationRelationshipsAPIService OrganizationRelationshipsAPI service.
OrganizationsAPIService OrganizationsAPI service.
PermissionSetsAPIService PermissionSetsAPI service.
PersonFieldsAPIService PersonFieldsAPI service.
PersonsAPIService PersonsAPI service.
PipelinesAPIService PipelinesAPI service.
ProductFieldsAPIService ProductFieldsAPI service.
ProductsAPIService ProductsAPI service.
ProjectsAPIService ProjectsAPI service.
ProjectTemplatesAPIService ProjectTemplatesAPI service.
RecentsAPIService RecentsAPI service.
RolesAPIService RolesAPI service.
ServerConfigurations stores multiple ServerConfiguration items.
StagesAPIService StagesAPI service.
SubscriptionsAPIService SubscriptionsAPI service.
TasksAPIService TasksAPI service.
UserConnectionsAPIService UserConnectionsAPI service.
UsersAPIService UsersAPI service.
UserSettingsAPIService UserSettingsAPI service.
WebhooksAPIService WebhooksAPI service.