Class RatingStatisticsResponse

Inheritance
System.Object
RatingStatisticsResponse
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: EPiServer.Social.Ratings.Rest.Contracts
Assembly: EPiServer.Social.Ratings.Rest.Contracts.dll
Version: 1.5.4
Syntax
public class RatingStatisticsResponse

Constructors

RatingStatisticsResponse()

Declaration
public RatingStatisticsResponse()

Properties

Extension

Gets or sets the extension data associated with the rating statistics

Declaration
public ExtensionResponse Extension { get; set; }
Property Value
Type Description
ExtensionResponse

Id

Gets or sets the Id of the rating statistics

Declaration
public string Id { get; set; }
Property Value
Type Description
System.String

Sum

Gets or sets the sum of all ratings for the target

Declaration
public long Sum { get; set; }
Property Value
Type Description
System.Int64

Target

Gets or sets the target to keep rating statistics for

Declaration
public string Target { get; set; }
Property Value
Type Description
System.String

TotalCount

Gets or sets the total count of ratings for the target

Declaration
public long TotalCount { get; set; }
Property Value
Type Description
System.Int64
arrow_upward