interface IContentReferenceService {
    getContentReference(request): Promise<ContentReferenceResponse>;
    getContentReferences(requests): Promise<ContentReferenceResponse[]>;
}

Methods