Expression

export type Expression = {
    slotId: string;
    expressionId: string;
    expressionName: string;
    expressionType: ExpressionType;
    description?: string;
};
export type ExpressionValue = {
    value: string; // url to content
    expressionValueId: string;
    expressionAttribute: ExpressionAttribute;
    expression: { 
      expressionId: string, 
      expressionName: string 
    };
}
export type ExpressionType = {
    expressionTypeId: string;
    expressionTypeName: ExpressionAttributeType;
    expressionAttributes: ExpressionAttribute[];
}
export type ExpressionAttribute = {
    expressionAttributeId: string;
    expressionAttributeName: ExpressionAttributeType;
}
export type ExpressionAttributeType = 'Image' | 'Audio' | 'Video' | 'AssetBundle' | 'Spine 4.0';
export type BulkExpressionValueLog = {
    filename: string;
    success: boolean;
}

Last updated