Class LiveToolsAclHitCountGetResponse
Live Tools ACL Hit Count Get Response
[DataContract]
public class LiveToolsAclHitCountGetResponse
- Inheritance
-
LiveToolsAclHitCountGetResponse
- Inherited Members
Constructors
LiveToolsAclHitCountGetResponse()
public LiveToolsAclHitCountGetResponse()
Properties
AclHitCountId
Id of the ACL hit count request. Used to check the status of the request.
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "aclHitCountId")]
public string AclHitCountId { get; set; }
Property Value
Acls
Results of the ACL hit count request, one for each ACL rule.
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "acls")]
public List<LiveToolsAclHitCountGetResponseAcl> Acls { get; set; }
Property Value
Error
An error message for a failed execution
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "error")]
public string Error { get; set; }
Property Value
Request
ACL hit count request parameters
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "request")]
public LiveToolsAclHitCountGetResponseRequest Request { get; set; }
Property Value
Status
Status of the ACL hit count request. enum = ["complete", "failed", "new", "ready", "running", ...]
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "status")]
public string Status { get; set; }
Property Value
Url
GET this url to check the status of your ACL hit count request.
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "url")]
public string Url { get; set; }