INPUT_OBJECT

CreateAlbumReleaseInput

Autogenerated input type of CreateAlbumRelease

link GraphQL Schema definition

  • input CreateAlbumReleaseInput {
  • # A unique identifier for the client performing the mutation.
  • client_mutation_id: String
  • # The one time total amount confirmation.
  • onetime_total_confirmation: String
  • # Accept Terms of Service.
  • accept_tos: Boolean
  • # Paymentmethod primary key.
  • payment_method_id: ID
  • # The Nonce from the client
  • payment_method_nonce: String
  • # True for PayPal, False for Credit Card.
  • paypal: Boolean
  • country_code: String
  • # A Street Address.
  • street_address: String
  • # Line 2 of a Street Address.
  • extended_address: String
  • # User's locality.
  • locality: String
  • # A US state
  • state: String
  • # A region
  • region: String
  • # The CVV of an existing credit card.
  • existing_credit_card_cvv: String
  • # A postal code.
  • postal_code: String
  • # Paypal internal fraud detection device data.
  • device_data: String
  • # Run the mutation with no side effects in validate-only mode. When true, the
  • # inputs will be validated and errors will be returned, but the mutation will not
  • # perform any actions.
  • skip_save: Boolean
  • # ID of the album to create a release for
  • album_id: ID!
  • # Scheduled time to deploy a Broadcast.
  • deploy_at: DateTime
  • # List of network IDs to add as broadcasts
  • network_ids: [ID!]!
  • # Deploy a broadcast as soon as possible.
  • asap: Boolean
  • # Additional services for the release.
  • network_extra_types: [NetworkExtraType!]
  • # List of additional services to add on the release
  • additional_services: [AdditionalServiceObject!]
  • # List of additional service bundle IDs to add on the release
  • additional_service_bundle_ids: [ID!]
  • }