Class PiiRequest
Pii response
[DataContract]
public class PiiRequest : IdentifiedItem
- Inheritance
-
PiiRequest
- Inherited Members
Properties
CompletedAt
Completed at
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "completedAt")]
public DateTime CompletedAt { get; set; }
Property Value
CreatedAt
Created at
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "createdAt")]
public DateTime CreatedAt { get; set; }
Property Value
Datasets
The datasets related to the provided key that should be deleted. Only applies to "delete" requests. The value "all" will be expanded to all datasets applicable to this type. The datasets by applicable to each type are: mac (usage, events, traffic), email (users, loginAttempts), username (users, loginAttempts), bluetoothMac (client, connectivity), smDeviceId (device), smUserId (user)
[ApiAccess(ApiAccess.ReadCreate)]
[DataMember(Name = "datasets")]
public List<string>? Datasets { get; set; }
Property Value
Mac
The MAC of a network client device. Applies to both "restrict processing" and "delete" requests.
[ApiAccess(ApiAccess.ReadCreate)]
[DataMember(Name = "mac")]
public string Mac { get; set; }
Property Value
NetworkId
Network id
[ApiForeignKey(typeof(Network))]
[ApiAccess(ApiAccess.ReadCreate)]
[DataMember(Name = "networkId")]
public string NetworkId { get; set; }
Property Value
OrganizationWide
Organization wide
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "organizationWide")]
public bool OrganizationWide { get; set; }
Property Value
Status
Status
[ApiAccess(ApiAccess.Read)]
[DataMember(Name = "status")]
public string Status { get; set; }
Property Value
Type
One of "delete" or "restrict processing"
[ApiAccess(ApiAccess.ReadCreate)]
[DataMember(Name = "type")]
public PiiType Type { get; set; }