ApiSecretDto
Namespace: Meshmakers.Octo.Communication.Contracts.DataTransferObjects
Represents a secret for an API.
public class ApiSecretDto
Inheritance Object → ApiSecretDto
Properties
ValueEncrypted
Value of the secret encrypted.
public string ValueEncrypted { get; set; }
Property Value
ValueClearText
Value of the secret in clear text.
public string ValueClearText { get; set; }
Property Value
ExpirationDate
Expiration date of the secret.
public Nullable<DateTime> ExpirationDate { get; set; }
Property Value
Description
Description of the secret.
public string Description { get; set; }
Property Value
Constructors
ApiSecretDto()
public ApiSecretDto()