// // This file is auto-generated from core/models/src/vault/FieldKey.ts // Do not edit this file directly. Run 'npm run generate:models' to regenerate. namespace AliasClientDb.Models; /// /// System field keys for the field-based data model. /// These keys map to FieldDefinition.FieldKey values. /// public static class FieldKey { /// /// Type: Text /// public const string LoginUsername = "login.username"; /// /// Type: Password /// public const string LoginPassword = "login.password"; /// /// Type: Email /// public const string LoginEmail = "login.email"; /// /// Type: URL /// public const string LoginUrl = "login.url"; /// /// Type: Text /// public const string CardNumber = "card.number"; /// /// Type: Text /// public const string CardCardholderName = "card.cardholder_name"; /// /// Type: Text /// public const string CardExpiryMonth = "card.expiry_month"; /// /// Type: Text /// public const string CardExpiryYear = "card.expiry_year"; /// /// Type: Password /// public const string CardCvv = "card.cvv"; /// /// Type: Password /// public const string CardPin = "card.pin"; /// /// Type: Text /// public const string AliasFirstName = "alias.first_name"; /// /// Type: Text /// public const string AliasLastName = "alias.last_name"; /// /// Type: Text /// public const string AliasGender = "alias.gender"; /// /// Type: Date /// public const string AliasBirthdate = "alias.birthdate"; /// /// Type: TextArea /// public const string NotesContent = "notes.content"; }