Sha256: 6f5a105abbb3b5ab77497a3a385de72a60e3ed87d1acefb3542d30feec81f107

Contents?: true

Size: 1.71 KB

Versions: 118

Compression:

Stored size: 1.71 KB

Contents

require_relative '../model'
module Spaceship
  class ConnectAPI
    class BuildBetaDetail
      include Spaceship::ConnectAPI::Model

      attr_accessor :auto_notify_enabled
      attr_accessor :did_notify
      attr_accessor :internal_build_state
      attr_accessor :external_build_state

      module InternalState
        PROCESSING_EXCEPTION = "PROCESSING_EXCEPTION"
        MISSING_EXPORT_COMPLIANCE = "MISSING_EXPORT_COMPLIANCE"
        READY_FOR_BETA_TESTING = "READY_FOR_BETA_TESTING"
        IN_BETA_TESTING = "IN_BETA_TESTING"
        EXPIRED = "EXPIRED"
        IN_EXPORT_COMPLIANCE_REVIEW = "IN_EXPORT_COMPLIANCE_REVIEW"
      end

      module ExternalState
        PROCESSING = "PROCESSING"
        PROCESSING_EXCEPTION = "PROCESSING_EXCEPTION"
        MISSING_EXPORT_COMPLIANCE = "MISSING_EXPORT_COMPLIANCE"
        READY_FOR_BETA_TESTING = "READY_FOR_BETA_TESTING"
        IN_BETA_TESTING = "IN_BETA_TESTING"
        EXPIRED = "EXPIRED"
        READY_FOR_BETA_SUBMISSION = "READY_FOR_BETA_SUBMISSION"
        IN_EXPORT_COMPLIANCE_REVIEW = "IN_EXPORT_COMPLIANCE_REVIEW"
        WAITING_FOR_BETA_REVIEW = "WAITING_FOR_BETA_REVIEW"
        IN_BETA_REVIEW = "IN_BETA_REVIEW"
        BETA_REJECTED = "BETA_REJECTED"
        BETA_APPROVED = "BETA_APPROVED"
      end

      attr_mapping({
        "autoNotifyEnabled" => "auto_notify_enabled",
        "didNotify" => "did_notify",
        "internalBuildState" => "internal_build_state",
        "externalBuildState" => "external_build_state"
      })

      def self.type
        return "buildBetaDetails"
      end

      #
      # Helpers
      #

      def ready_for_beta_submission?
        return external_build_state == ExternalState::READY_FOR_BETA_SUBMISSION
      end
    end
  end
end

Version data entries

118 entries across 118 versions & 2 rubygems

Version Path
fastlane-2.138.0 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.137.0 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.136.0 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.135.2 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.135.1 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.135.0 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.134.0 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.133.0 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.132.0 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.132.0.beta.20190930200026 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.132.0.beta.20190929200020 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.132.0.beta.20190928200106 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.132.0.beta.20190927200017 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.132.0.beta.20190926200023 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.132.0.beta.20190925200108 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.132.0.beta.20190924200030 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.132.0.beta.20190923200017 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.132.0.beta.20190922200014 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.132.0.beta.20190921200021 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb
fastlane-2.132.0.beta.20190920200012 spaceship/lib/spaceship/connect_api/models/build_beta_detail.rb