// // This file is auto-generated from shared/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: Text /// public const string LoginNotes = "login.notes"; /// /// Type: URL /// public const string LoginUrl = "login.url"; /// /// Type: Text /// public const string LoginRecoveryCodes = "login.recovery_codes"; /// /// 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 IdentityTitle = "identity.title"; /// /// Type: Text /// public const string IdentityFirstName = "identity.first_name"; /// /// Type: Text /// public const string IdentityMiddleName = "identity.middle_name"; /// /// Type: Text /// public const string IdentityLastName = "identity.last_name"; /// /// Type: Email /// public const string IdentityEmail = "identity.email"; /// /// Type: Text /// public const string IdentityPhoneNumbers = "identity.phone_numbers"; /// /// Type: Text /// public const string IdentityAddressLine1 = "identity.address_line1"; /// /// Type: Text /// public const string IdentityAddressLine2 = "identity.address_line2"; /// /// Type: Text /// public const string IdentityCity = "identity.city"; /// /// Type: Text /// public const string IdentityState = "identity.state"; /// /// Type: Text /// public const string IdentityPostalCode = "identity.postal_code"; /// /// Type: Text /// public const string IdentityCountry = "identity.country"; /// /// Type: Email /// public const string AliasEmail = "alias.email"; /// /// Type: Text /// public const string AliasFirstName = "alias.first_name"; /// /// Type: Text /// public const string AliasLastName = "alias.last_name"; /// /// Type: Text /// public const string AliasNickname = "alias.nickname"; /// /// Type: Text /// public const string AliasGender = "alias.gender"; /// /// Type: Date /// public const string AliasBirthdate = "alias.birthdate"; }