Skip to content
Merged
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: 4 additions & 5 deletions ballerina/types.bal
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ public type ObjectTypeDefinitionPatch record {
string primaryDisplayProperty?;
string description?;
boolean restorable?;
# Singular and plural labels for the object. Used in CRM display
ObjectTypeDefinitionLabels labels?;
};

Expand All @@ -46,6 +47,7 @@ public type ObjectTypeDefinition record {
string objectTypeId?;
string description?;
string fullyQualifiedName?;
# Singular and plural labels for the object. Used in CRM display
ObjectTypeDefinitionLabels labels;
boolean archived?;
# When the object type was created
Expand Down Expand Up @@ -93,13 +95,9 @@ public type GetCrmObjectSchemasV3SchemasGetAllQueries record {
};

public type PropertyModificationMetadata record {
#
boolean readOnlyOptions?;
#
boolean readOnlyValue;
#
boolean readOnlyDefinition;
#
boolean archivable;
};

Expand Down Expand Up @@ -178,6 +176,7 @@ public type ObjectSchema record {
int:Signed32 updatedByUserId?;
# An assigned unique ID for the object, including portal ID and object name
string fullyQualifiedName?;
# Singular and plural labels for the object. Used in CRM display
ObjectTypeDefinitionLabels labels;
boolean archived?;
# When the object schema was created
Expand Down Expand Up @@ -244,6 +243,7 @@ public type ObjectSchemaEgg record {
string[] associatedObjects;
# Properties defined for this object type
ObjectTypePropertyCreate[] properties;
# Singular and plural labels for the object. Used in CRM display
ObjectTypeDefinitionLabels labels;
};

Expand Down Expand Up @@ -272,7 +272,6 @@ public type Property record {
boolean calculated?;
# For default properties, true indicates that the options are stored externally to the property settings
boolean externalOptions?;
#
string updatedAt?;
# The internal ID of the user who created the property in HubSpot. This field may not exist if the property was created outside of HubSpot
string createdUserId?;
Expand Down
Loading