Typescript SDK Type Docs
    Preparing search index...

    Interface TypeImport

    Represents the data used to import a Type. Once imported, this data is persisted as a Type in the Project.

    interface TypeImport {
        description?: LocalizedString;
        fieldDefinitions?: FieldDefinition[];
        key: string;
        name: LocalizedString;
        resourceTypeIds: ResourceTypeId[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    description?: LocalizedString

    Maps to Type.description.

    fieldDefinitions?: FieldDefinition[]

    Maps to Type.fieldDefinitions.

    key: string

    User-defined unique identifier for the Type. If a Type with this key exists, it is updated with the imported data.

    Maps to Type.name.

    resourceTypeIds: ResourceTypeId[]

    Maps to Type.resourceTypeIds. This value cannot be changed after the Type is imported.