Insurance

public struct Insurance : Hashable, Equatable, Sendable, Codable, Identifiable
  • id

    Declaration

    Swift

    public var id: UUID
  • Declaration

    Swift

    public var name: String?
  • Declaration

    Swift

    public var telematikId: String?
  • Declaration

    Swift

    public init(
        id: UUID = UUID(),
        name: String? = nil,
        telematikId: String? = nil
    )