Asset

export type Asset = {
    assetId: string;
    serial: number;
    collectionId: string;
    collectionName: string;
    user: UserAlias;
    createdAt: number;
    updatedAt: number;
    expressionValues: ExpressionValue[];
    properties: BasicAnyObject;
};
type AssetCounts = {
    [collectionId: string]: number;
}
SendAssetResponseBody = {
    to: string;
    serial: number;
    assetId: string;
}
SendAssetsResponseBody = {
    to: string;
    assetIds: string[];
}

Last updated