GraphQL OBJECT

ProtectedUrl

Protected URL.

link Definition

  • type ProtectedUrl {
  • # Indicates if all items have reached the maximum quantity of usages.
  • allItemsReachedMaxUsageQuantity: Boolean!
  • # Indicates if the protected URL allows purchase orders.
  • allowPurchaseOrder: Boolean!
  • # Indicates if the protected URL allows to change the underlying cart.
  • allowToChangeCart: Boolean!
  • # Unique ID of the client which the protected URL belongs to.
  • client: Client
  • # Date and time when the protected URL was created.
  • creationDate: DateTime!
  • # User who created the protected URL.
  • createdBy: UserAccount!
  • # Indicates if the fraud protection is enabled.
  • enableFraudProtection: Boolean!
  • # Unique ID of the protected URL.
  • id: Int
  • # Internal URL of the protected URL.
  • internalUrl: String!
  • # Indicates if the protected URL is active and valid.
  • isActiveAndValid: Boolean!
  • # Indicates if the protected URL is active.
  • isActive: Boolean!
  • # Items of the protected URL.
  • items: [ProtectedUrlItem]
  • # User who last edited the protected URL.
  • lastModifiedBy: UserAccount!
  • # Date and time when the last edit occurred.
  • lastModifyDate: DateTime!
  • # The maximum quantity of submitted orders which the URL is valid for.
  • maxQuantity: Int
  • # The name of the protected URL.
  • name: String
  • # Beginning of the timespan in which the protected URL is valid.
  • validFrom: DateTime
  • # End of the timespan in which the protected URL is valid.
  • validTo: DateTime
  • }