updateExpression()

Update details of specified expression

Parameters

export type UpdateExpressionProps = {
    expressionId: string;
    expressionTypeId?: string; // an expression type for the new expression
    expressionName?: string; // a name for the new expression
    description?: string; // a description for the new expression

Examples

const success = await assetlayer.slots.updateExpression({
    expressionId: 'expressionId',
    expressionTypeId: 'expressionTypeId',
    expressionName: 'expressionName',
});

Return Types

type ReturnType = boolean;

Last updated