class Spaceship::Portal::AppService

Represents a single application service (its state to be more precise) on the Apple Dev Portal

def ==(other)

def ==(other)
  self.class == other.class &&
    self.service_id == other.service_id &&
    self.value == other.value &&
    self.service_uri == other.service_uri
end

def app_group

def app_group
  self::AppGroup
end

def associated_domains

def associated_domains
  self::AssociatedDomains
end

def cloud_kit

def cloud_kit
  self::CloudKit
end

def data_protection

def data_protection
  self::DataProtection
end

def health_kit

def health_kit
  self::HealthKit
end

def home_kit

def home_kit
  self::HomeKit
end

def icloud

def icloud
  self::Cloud
end

def initialize(service_id, value)

def initialize(service_id, value)
  @service_id = service_id
  @value = value
  if @service_id == "push"
    # Push notifications have a special URI
    @service_uri = "account/ios/identifiers/updatePushService.action"
  else
    # Default service URI
    @service_uri = "account/ios/identifiers/updateService.action"
  end
end

def inter_app_audio

def inter_app_audio
  self::InterAppAudio
end

def passbook

def passbook
  self::Passbook
end

def push_notification

def push_notification
  self::PushNotification
end

def vpn_configuration

def vpn_configuration
  self::VPNConfiguration
end

def wireless_accessory

def wireless_accessory
  self::WirelessAccessory
end