> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.revvue.ai/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.revvue.ai/_mcp/server.

# QrCodeInput

GraphQL input

Reference: https://docs.revvue.ai/api-reference/qr-codes/types/inputs/qr-code-input

## Fields

- `fullOverwrite` — Overwrite all properties in the object.
- `id` — Unique id (UUID).
- `activeState` — Active state
- `tenantId` — Document tenant id.
- `codeType`
- `companyId`
- `googlePlaceId`
- `locationId`
- `locationIds` — Location ids connected with the document.
- `locationName`
- `locationOptions` — Location options.
- `name`
- `parentDocumentId`
- `redirectUrl`
- `scanUrl`
- `style` — QR code style.
- `themeId`
- `url`
- `defaultLanguage`

## Definition

```graphql
input QrCodeInput {
  fullOverwrite: Boolean
  id: UUID
  activeState: ActiveState
  tenantId: String
  codeType: QrCodeType
  companyId: UUID
  googlePlaceId: String
  locationId: UUID
  locationIds: [UUID]
  locationName: String
  locationOptions: [LocationOptionInput]
  name: String
  parentDocumentId: UUID
  redirectUrl: String
  scanUrl: String
  style: QrCodeStyleInput
  themeId: UUID
  url: String
  defaultLanguage: String
}
```