Axinom Mosaic Libraries
    Preparing search index...

    Interface UpsertLocalizationSourceEntityCommand

    Upsert localization source entity command schema.

    interface UpsertLocalizationSourceEntityCommand {
        entity_id: string;
        entity_title?: string;
        entity_type: string;
        fields: { [name: string]: unknown };
        image_id?: string | null;
        service_id: string;
    }
    Index

    Properties

    entity_id: string

    The string has a minimum length of one character and it cannot consist of only whitespace characters.

    entity_title?: string

    An optional title of the localization source entity.

    entity_type: string

    The string has a minimum length of one character and it cannot consist of only whitespace characters.

    fields: { [name: string]: unknown }

    Fields that would be added or updated for the localization source entity.

    image_id?: string | null

    An optional Id of the related image. If null is passed - image will be unassigned. If undefined is passed - image will not be updated.

    service_id: string

    The string has a minimum length of one character and it cannot consist of only whitespace characters.