File: build_update_request.rb

package info (click to toggle)
ruby-app-store-connect 0.37.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 444 kB
  • sloc: ruby: 856; makefile: 4
file content (17 lines) | stat: -rw-r--r-- 302 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

require 'app_store_connect/create_request'

module AppStoreConnect
  class BuildUpdateRequest < CreateRequest
    data do
      id
      type 'builds'

      attributes do
        property :expired
        property :uses_non_exempt_encryption
      end
    end
  end
end