Represents the metadata that will be assigned to the imported entry.

interface IImportEntryRequestMetadata {
    fields?: FieldToUpdate[];
    links?: LinkToUpdate[];
    tags?: string[];
    templateName?: string;
}

Implemented by

Properties

fields?: FieldToUpdate[]

The fields that will be assigned to the entry.

links?: LinkToUpdate[]

The links that will be assigned to the entry.

tags?: string[]

The tags that will be assigned to the entry.

templateName?: string

The name of the template assigned to the entry.