box-node-sdk
Version:
Official SDK for Box Platform APIs
18 lines (17 loc) • 760 B
TypeScript
import { CollaboratorVariable } from './collaboratorVariable';
import { CompletionRuleVariable } from './completionRuleVariable';
import { RoleVariable } from './roleVariable';
import { SerializedData } from '../serialization/json';
export interface Outcome {
/**
* ID of a specific outcome. */
readonly id: string;
readonly collaborators?: CollaboratorVariable;
readonly completionRule?: CompletionRuleVariable;
readonly fileCollaboratorRole?: RoleVariable;
readonly taskCollaborators?: CollaboratorVariable;
readonly role?: RoleVariable;
readonly rawData?: SerializedData;
}
export declare function serializeOutcome(val: Outcome): SerializedData;
export declare function deserializeOutcome(val: SerializedData): Outcome;