Organization

public class Organization : Item

An organization, for instance an NGO, company or school.

  • The name of the item.

    Declaration

    Swift

    @objc
    dynamic var name: String?
  • Date that the Item was founded.

    Declaration

    Swift

    @objc
    dynamic var dateFounded: Date?
  • The area that this Item operates in.

    Declaration

    Swift

    @objc
    dynamic var areaServed: String?
  • A fiscal identifier.

    Declaration

    Swift

    @objc
    dynamic var taxId: String?
  • Physical address of the event or place.

    Declaration

    Swift

    var address: Results<Address>? { get }
  • The place where the Item was founded.

    Declaration

    Swift

    var foundingLocation: Results<Location>? { get }
  • A logo that belongs to an Item

    Declaration

    Swift

    var logo: Results<Photo>? { get }
  • A review of the Item.

    Declaration

    Swift

    var review: Results<Review>? { get }
  • Another (smaller) Event that takes place at this Event

    Declaration

    Swift

    var subOrganization: Results<Event>? { get }
  • The Event this Item organizes.

    Declaration

    Swift

    var performsAt: Results<Event>? { get }
  • The Event this Item attends.

    Declaration

    Swift

    var attends: Results<Event>? { get }
  • The Event this Item attends.

    Declaration

    Swift

    var organizes: Results<Event>? { get }
  • Hours that an organization is open.

    Declaration

    Swift

    var openingHours: Results<OpeningHours>? { get }
  • A sector that produces goods or related services within an economy.

    Declaration

    Swift

    var industry: Results<Industry>? { get }
  • The buying party in a transaction.

    Declaration

    Swift

    var buyer: Results<Transaction>? { get }
  • The buying party in a transaction.

    Declaration

    Swift

    var seller: Results<Transaction>? { get }
  • Undocumented

    Declaration

    Swift

    public required convenience init(from decoder: Decoder) throws
  • Declaration

    Swift

    override var computedTitle: String { get }