Files
aliasvault/apps/mobile-app/ios/VaultModels/FieldKey.swift

55 lines
1.4 KiB
Swift

// <auto-generated />
// 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.
import Foundation
/// System field keys for the field-based data model.
/// These keys map to FieldDefinition.FieldKey values.
public struct FieldKey {
/// Type: Text
public static let loginUsername = "login.username"
/// Type: Password
public static let loginPassword = "login.password"
/// Type: Email
public static let loginEmail = "login.email"
/// Type: URL
public static let loginUrl = "login.url"
/// Type: Text
public static let cardNumber = "card.number"
/// Type: Text
public static let cardCardholderName = "card.cardholder_name"
/// Type: Text
public static let cardExpiryMonth = "card.expiry_month"
/// Type: Text
public static let cardExpiryYear = "card.expiry_year"
/// Type: Password
public static let cardCvv = "card.cvv"
/// Type: Password
public static let cardPin = "card.pin"
/// Type: Text
public static let aliasFirstName = "alias.first_name"
/// Type: Text
public static let aliasLastName = "alias.last_name"
/// Type: Text
public static let aliasGender = "alias.gender"
/// Type: Date
public static let aliasBirthdate = "alias.birthdate"
/// Type: TextArea
public static let notesContent = "notes.content"
}