Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions codegen/automation/actions/models/NextPage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,17 @@
*/


/**
* Specifies the paging information needed to retrieve the next set of results in a paginated API response
*/
export class NextPage {
/**
* A URL that can be used to retrieve the next page results.
*/
'link'?: string;
/**
* A paging cursor token for retrieving subsequent pages.
*/
'after': string;

static readonly discriminator: string | undefined = undefined;
Expand Down
21 changes: 21 additions & 0 deletions codegen/automation/actions/models/Option.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,34 @@
*/


/**
* A HubSpot property option
*/
export class Option {
/**
* Whether the option is displayed in HubSpot\'s UI.
*/
'hidden': boolean;
/**
* The position of the item relative to others in the list.
*/
'displayOrder': number;
'doubleData': number;
/**
* A description of the option.
*/
'description': string;
/**
* Whether the option is read-only.
*/
'readOnly': boolean;
/**
* A user-friendly label that identifies the option.
*/
'label': string;
/**
* The actual value of the option.
*/
'value': string;

static readonly discriminator: string | undefined = undefined;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,11 @@ export type PublicActionDefinitionInputFieldDependenciesInner = PublicConditiona
* @export
*/
export class PublicActionDefinitionInputFieldDependenciesInnerClass {
static readonly discriminator: string | undefined = undefined;
static readonly discriminator: string | undefined = "dependencyType";

static readonly mapping: {[index: string]: string} | undefined = undefined;
static readonly mapping: {[index: string]: string} | undefined = {
"CONDITIONAL_SINGLE_FIELD": "PublicConditionalSingleFieldDependency",
"SINGLE_FIELD": "PublicSingleFieldDependency",
};
}