Interface ObjectRelationship

interface ObjectRelationship {
    createdAt?: Date;
    displayLabel?: string;
    fieldValues?: {
        [index: string]: any;
    };
    fromObjectDisplayLabel?: string;
    fromObjectId?: string;
    fromObjectTypeName?: string;
    fromObjectTypeVersion?: number;
    id?: string;
    lastUpdatedAt?: Date;
    qualifiedTypeName?: string;
    relationshipTypeLabel?: string;
    relationshipTypeName?: string;
    toObjectDisplayLabel?: string;
    toObjectId?: string;
    toObjectTypeName?: string;
    toObjectTypeVersion?: number;
    validFrom?: Date;
    validTo?: Date;
}

Properties

createdAt?: Date
displayLabel?: string
fieldValues?: {
    [index: string]: any;
}
fromObjectDisplayLabel?: string
fromObjectId?: string
fromObjectTypeName?: string
fromObjectTypeVersion?: number
id?: string
lastUpdatedAt?: Date
qualifiedTypeName?: string
relationshipTypeLabel?: string
relationshipTypeName?: string
toObjectDisplayLabel?: string
toObjectId?: string
toObjectTypeName?: string
toObjectTypeVersion?: number
validFrom?: Date
validTo?: Date