File: build_update_request.rb

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

module AppStoreConnect
  class BuildUpdateRequest < Request::Body
    data do
      id
      type 'builds'

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