DavOrganization

public struct DavOrganization : Hashable, Codable

Acts as the intermediate data model from a ModelsR4.Organization resource response and the local store representation

A formally or informally recognized grouping of people or organizations formed for the purpose of achieving some form of collective action. Includes companies, institutions, corporations, departments, community groups, healthcare practice groups, payer/insurer, etc. Profile: https://simplifier.net/packages/de.abda.erezeptabgabedaten/1.3.0/files/805901

  • Declaration

    Swift

    public init(
        identifier: String,
        name: String,
        address: String,
        country: String
    )
  • unique identifier in each DavOrganization

    Declaration

    Swift

    public let identifier: String
  • name of the organization as a label

    Declaration

    Swift

    public let name: String
  • address containing city and postalCode

    Declaration

    Swift

    public let address: String
  • country name (ISO 3166 3 letter codes can be used in place of a human readable name)

    Declaration

    Swift

    public let country: String