Interface SetOperation

An interface for blockchain set operation.

interface SetOperation {
    is_global?: boolean;
    ref: string;
    type: SetOperationType;
    value: any;
}

Properties

is_global?: boolean
ref: string
value: any