class Spaceship::ConnectAPI::BuildBundleFileSizes

Attributes

device_model[RW]
download_bytes[RW]
install_bytes[RW]
os_version[RW]

Public Class Methods

all(client: nil, build_bundle_id: nil, limit: 30) click to toggle source

API

# File spaceship/lib/spaceship/connect_api/models/build_bundle_file_sizes.rb, line 27
def self.all(client: nil, build_bundle_id: nil, limit: 30)
  client ||= Spaceship::ConnectAPI
  resps = client.get_build_bundles_build_bundle_file_sizes(build_bundle_id: build_bundle_id).all_pages
  resps.flat_map(&:to_models)
end
type() click to toggle source
# File spaceship/lib/spaceship/connect_api/models/build_bundle_file_sizes.rb, line 19
def self.type
  return "buildBundleFileSizes"
end