Skip to main content

ApiKey

The POCO Table used to persist API Keys

Assembly: ServiceStack.dll
View Source
Declaration
public class ApiKey : IMeta

Properties

Id

View Source
Declaration
public string Id { get; set; }

UserAuthId

View Source
Declaration
public string UserAuthId { get; set; }

Environment

View Source
Declaration
public string Environment { get; set; }

KeyType

View Source
Declaration
public string KeyType { get; set; }

CreatedDate

View Source
Declaration
public DateTime CreatedDate { get; set; }

ExpiryDate

View Source
Declaration
public DateTime? ExpiryDate { get; set; }

CancelledDate

View Source
Declaration
public DateTime? CancelledDate { get; set; }

Notes

View Source
Declaration
public string Notes { get; set; }

RefId

View Source
Declaration
public int? RefId { get; set; }

RefIdStr

View Source
Declaration
public string RefIdStr { get; set; }

Meta

View Source
Declaration
public Dictionary<string, string> Meta { get; set; }

Implements