@openscreen/internal-sdk 2.0.7-beta.1 → 2.0.7-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/index.modern.mjs +1 -1
- package/dist/index.modern.mjs.map +1 -1
- package/package.json +1 -1
- package/typings/sdk.d.ts +3017 -3017
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../src/request.ts","../src/sdk.ts","../src/request-delete.ts","../src/request-get.ts","../src/request-patch.ts","../src/request-post.ts","../src/resource.ts","../src/openscreen.ts"],"sourcesContent":["/* eslint-disable no-console, import/no-cycle */\nimport {IOpenscreenSession} from './openscreen-session'\n\nexport interface RequestRouteSegment {\n parm?: string\n routePart: string\n sdkPartName: string\n}\n\nexport class Request {\n session: IOpenscreenSession\n routeSegments?: RequestRouteSegment[]\n\n constructor(session: IOpenscreenSession) {\n this.session = session\n }\n\n async makeUri(pathParameters: any = {}) {\n const cloudConfig = await this.session.getCloudConfig()\n const urlParts: string[] = [cloudConfig.endpoint.replace(/\\/+$/, '')]\n this.routeSegments!.forEach((segment) => {\n urlParts.push(segment.routePart)\n if (segment.parm) {\n const value = pathParameters[segment.parm!]\n if (!value) {\n throw Error(`Openscreen: missing path parameter value for '${segment.parm!}'`)\n }\n urlParts.push(value)\n }\n })\n return urlParts.join('/')\n }\n\n debugRequest(httpMethod: string, url: string, queryParameters?: any, body?: any, options?: any) {\n if (this.session.debugRequest) {\n console.debug(`Openscreen REQUEST: ${httpMethod.toUpperCase()} ${url}`)\n if (body) console.debug(`Openscreen REQUEST: ${JSON.stringify(body, null, 2)}`)\n if (queryParameters && this.session.debugQuery) {\n console.debug(`Openscreen QUERY: ${JSON.stringify(queryParameters, null, 2)}`)\n }\n if (options && this.session.debugOptions) {\n console.debug(`Openscreen OPTIONS: ${JSON.stringify(options, null, 2)}`)\n }\n }\n }\n\n debugResponse(response: any) {\n if (this.session.debugResponse) {\n console.debug(`Openscreen RESPONSE: ${JSON.stringify(response.data || {}, null, 2)}`)\n }\n }\n\n handleAndDebugErr(err: any): any {\n if (err.response && err.response.data) {\n if (this.session.debugError) {\n console.error(`Openscreen ERROR: ${JSON.stringify(err.response.data, null, 2)}`)\n } else if (this.session.debugResponse) {\n console.error(`Openscreen RESPONSE: ${JSON.stringify(err.response.data, null, 2)}`)\n }\n return err.response.data\n }\n if (this.session.debugError) {\n try {\n console.error(err)\n } catch {\n console.error(`Openscreen: (unable to print error)`)\n }\n }\n return err\n }\n}\n","import {RequestRouteSegment} from './request.js'\nimport {RequestDelete} from './request-delete.js'\nimport {RequestGet} from './request-get.js'\nimport {RequestPatch} from './request-patch.js'\nimport {RequestPost} from './request-post.js'\nimport {Resource, Resources} from './resource.js'\n\nexport interface NestedKeyValueObject {\n [key: string] : string | number | boolean | NestedKeyValueObject | string[]\n}\n// ENUMERATIONS\n\nexport enum AccountDomainTypes {\n ENGAGE_MICROSITE = 'ENGAGE_MICROSITE',\n QRCODE = 'QRCODE',\n TRACK_WORKFLOW = 'TRACK_WORKFLOW',\n}\n\nexport enum AccountSortingTypes {\n CREATED_DATE = 'CREATED_DATE',\n STATIC_QR_CODE_COUNT = 'STATIC_QR_CODE_COUNT',\n DYNAMIC_QR_CODE_COUNT = 'DYNAMIC_QR_CODE_COUNT',\n SCAN_COUNT = 'SCAN_COUNT',\n CONTACT_COUNT = 'CONTACT_COUNT',\n PRICE_PLAN = 'PRICE_PLAN',\n LAST_ACTIVITY = 'LAST_ACTIVITY',\n CLIENT_EXEC = 'CLIENT_EXEC',\n ASSET_COUNT = 'ASSET_COUNT',\n SMS_COUNT = 'SMS_COUNT',\n ACCOUNT_STATUS = 'ACCOUNT_STATUS',\n}\n\nexport enum AccountStatus {\n ACTIVE = 'ACTIVE',\n SUSPENDED = 'SUSPENDED',\n CANCELLED = 'CANCELLED',\n}\n\nexport enum AccountType {\n INTERNAL = 'INTERNAL',\n EXTERNAL = 'EXTERNAL',\n}\n\nexport enum AccountUserRole {\n OWNER = 'OWNER',\n ADMINISTRATOR = 'ADMINISTRATOR',\n BILLING_CONTACT = 'BILLING_CONTACT',\n MEMBER = 'MEMBER',\n API_KEY = 'API_KEY',\n INVITATION_DECLINED = 'INVITATION_DECLINED',\n READ_ONLY = 'READ_ONLY',\n}\n\nexport enum AssetByAssetTypeSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n SCAN_COUNT = 'SCAN_COUNT',\n QR_CODE_COUNT = 'QR_CODE_COUNT',\n STATE = 'STATE',\n}\n\nexport enum AssetCreationFileTypes {\n json = 'json',\n csv = 'csv',\n}\n\nexport enum AssetSortingTypes {\n MODIFIED = 'MODIFIED',\n STATE = 'STATE',\n NAME = 'NAME',\n SCAN_COUNT = 'SCAN_COUNT',\n QR_CODE_COUNT = 'QR_CODE_COUNT',\n ASSET_TYPE_NAME = 'ASSET_TYPE_NAME',\n}\n\nexport enum AssetTypeSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n}\n\nexport enum AssetTypeUsabilityState {\n PUBLISHED = 'PUBLISHED',\n DRAFT = 'DRAFT',\n ARCHIVED = 'ARCHIVED',\n}\n\nexport enum AuthMessageId {\n INVALID_API_KEY = 'INVALID_API_KEY',\n INVALID_EMAIL = 'INVALID_EMAIL',\n INVALID_LEGACY_MIGRATION = 'INVALID_LEGACY_MIGRATION',\n INVALID_PASSWORD = 'INVALID_PASSWORD',\n INVALID_SCOPE = 'INVALID_SCOPE',\n INVALID_SECRET = 'INVALID_SECRET',\n INVALID_TOKEN = 'INVALID_TOKEN',\n MIGRATE_FROM_COGNITO = 'MIGRATE_FROM_COGNITO',\n NO_ACCESS_TOKEN = 'NO_ACCESS_TOKEN',\n NO_REFRESH_TOKEN = 'NO_REFRESH_TOKEN',\n RESET_PASSWORD = 'RESET_PASSWORD',\n RESET_SECRET = 'RESET_SECRET',\n SUSPENDED_OR_INACTIVE = 'SUSPENDED_OR_INACTIVE',\n TOKEN_EXPIRED = 'TOKEN_EXPIRED',\n TRY_AGAIN = 'TRY_AGAIN',\n UNABLE_TO_CONFIRM_EMAIL = 'UNABLE_TO_CONFIRM_EMAIL',\n UNCONFIRMED_EMAIL = 'UNCONFIRMED_EMAIL',\n EMAIL_ALREADY_TAKEN = 'EMAIL_ALREADY_TAKEN',\n SSO_USER = 'SSO_USER',\n}\n\nexport enum AuthTokenScope {\n API = 'API',\n SSO = 'SSO',\n CONFIRM_EMAIL = 'CONFIRM_EMAIL',\n NEW_PASSWORD = 'NEW_PASSWORD',\n NO_SESSION = 'NO_SESSION',\n NO_PASSWORD = 'NO_PASSWORD',\n CONFIRMED_NO_PASSWORD = 'CONFIRMED_NO_PASSWORD',\n}\n\nexport enum AuthTypes {\n MICROSOFT = 'MICROSOFT',\n}\n\nexport enum CampaignUseCaseCategory {\n TWO_FACTOR_AUTHENTICATION = 'TWO_FACTOR_AUTHENTICATION',\n MARKETING = 'MARKETING',\n CUSTOMER_CARE = 'CUSTOMER_CARE',\n CHARITY_NONPROFIT = 'CHARITY_NONPROFIT',\n DELIVERY_NOTIFICATIONS = 'DELIVERY_NOTIFICATIONS',\n FRAUD_ALERT_MESSAGING = 'FRAUD_ALERT_MESSAGING',\n EVENTS = 'EVENTS',\n HIGHER_EDUCATION = 'HIGHER_EDUCATION',\n K12 = 'K12',\n POLLING_AND_VOTING_NON_POLITICAL = 'POLLING_AND_VOTING_NON_POLITICAL',\n POLITICAL_ELECTION_CAMPAIGNS = 'POLITICAL_ELECTION_CAMPAIGNS',\n PUBLIC_SERVICE_ANNOUNCEMENT = 'PUBLIC_SERVICE_ANNOUNCEMENT',\n SECURITY_ALERT = 'SECURITY_ALERT',\n ACCOUNT_NOTIFICATIONS = 'ACCOUNT_NOTIFICATIONS',\n}\n\nexport enum ConsentStatus {\n ACCEPTED = 'ACCEPTED',\n DECLINED = 'DECLINED',\n true = 'true',\n false = 'false',\n}\n\nexport enum ConsentType {\n SMS = 'SMS',\n EMAIL = 'EMAIL',\n DATA = 'DATA',\n CUSTOM = 'CUSTOM',\n}\n\nexport enum ContactAssetSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n PHONE = 'PHONE',\n EMAIL = 'EMAIL',\n LAST_SCAN_TIME = 'LAST_SCAN_TIME',\n LAST_SCAN_LOCATION = 'LAST_SCAN_LOCATION',\n SCAN_COUNT = 'SCAN_COUNT',\n}\n\nexport enum ContactSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n ASSET_NAME = 'ASSET_NAME',\n PHONE = 'PHONE',\n EMAIL = 'EMAIL',\n LAST_SCAN_TIME = 'LAST_SCAN_TIME',\n LAST_SCAN_LOCATION = 'LAST_SCAN_LOCATION',\n SCAN_COUNT = 'SCAN_COUNT',\n}\n\nexport enum DomainStatus {\n INITIATED = 'INITIATED',\n VERIFIED = 'VERIFIED',\n CERTIFICATE_REQUESTED = 'CERTIFICATE_REQUESTED',\n CERTIFICATE_VALIDATION_ADDED = 'CERTIFICATE_VALIDATION_ADDED',\n CERTIFICATE_VALIDATED = 'CERTIFICATE_VALIDATED',\n CDN_DISTRIBUTION_ADDED = 'CDN_DISTRIBUTION_ADDED',\n COMPLETED = 'COMPLETED',\n FAILED = 'FAILED',\n}\n\nexport enum EntitySources {\n CARE_API = 'CARE_API',\n}\n\nexport enum FieldType {\n STRING = 'STRING',\n NUMBER = 'NUMBER',\n}\n\nexport enum InternalProductName {\n ENGAGE = 'ENGAGE',\n TRACK = 'TRACK',\n INVENTORY = 'INVENTORY',\n CREATE = 'CREATE',\n}\n\nexport enum InvoiceStatus {\n COMING_UP = 'COMING_UP',\n PAID = 'PAID',\n PAST_DUE = 'PAST_DUE',\n VOID = 'VOID',\n}\n\nexport enum JobStatus {\n IN_PROGRESS = 'IN_PROGRESS',\n COMPLETED = 'COMPLETED',\n TIMEOUT = 'TIMEOUT',\n FAILED = 'FAILED',\n CANCELLED = 'CANCELLED',\n DOWNLOADED = 'DOWNLOADED',\n}\n\nexport enum JobType {\n BATCH_CREATE_BLANK_ITEMS = 'BATCH_CREATE_BLANK_ITEMS',\n BATCH_CREATE_ASSETS = 'BATCH_CREATE_ASSETS',\n VALIDATE_CSV = 'VALIDATE_CSV',\n VALIDATE_AND_GENERATE_CSV = 'VALIDATE_AND_GENERATE_CSV',\n SELF_QUEUE_BATCH_PRINT = 'SELF_QUEUE_BATCH_PRINT',\n SCAN_EXPORT = 'SCAN_EXPORT',\n ASSET_EXPORT = 'ASSET_EXPORT',\n CONTACT_EXPORT = 'CONTACT_EXPORT',\n TEMPLATED_PRINT = 'TEMPLATED_PRINT',\n CLONE_MICROSITE = 'CLONE_MICROSITE',\n QRCODE_SCANS_EXPORT = 'QRCODE_SCANS_EXPORT',\n PROJECT_EXPORT = 'PROJECT_EXPORT',\n ACCOUNT_EXPORT = 'ACCOUNT_EXPORT',\n WEB_SESSION_EXPORT = 'WEB_SESSION_EXPORT',\n USER_DB_ENTITIES_GENENERATION = 'USER_DB_ENTITIES_GENENERATION',\n USER_DB_ENTITIES_EXPORT = 'USER_DB_ENTITIES_EXPORT',\n UPDATE_MICROSITE_QR_CODE_CUSTOM_DOMAIN = 'UPDATE_MICROSITE_QR_CODE_CUSTOM_DOMAIN',\n UPDATE_MICROSITE_CDN_CUSTOM_DOMAIN = 'UPDATE_MICROSITE_CDN_CUSTOM_DOMAIN',\n}\n\nexport enum Label {\n NONE = 'NONE',\n ASSET_NAME = 'ASSET_NAME',\n CUSTOM = 'CUSTOM',\n COMPANY_NAME = 'COMPANY_NAME',\n LOCATOR_KEY = 'LOCATOR_KEY',\n}\n\nexport enum LocationSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n STATE = 'STATE',\n}\n\nexport enum OpenscreenEmails {\n SALES_EMAIL = 'SALES_EMAIL',\n SUPPORT_EMAIL = 'SUPPORT_EMAIL',\n}\n\nexport enum Permission {\n PLUGIN_CONFIGURATION = 'PLUGIN_CONFIGURATION',\n INDIVIDUAL_ACCOUNT_SETTINGS = 'INDIVIDUAL_ACCOUNT_SETTINGS',\n WORKFLOW_BUILDER = 'WORKFLOW_BUILDER',\n QR_CODE_AND_PRINT_STUDIO = 'QR_CODE_AND_PRINT_STUDIO',\n REPORTING_AND_ANALYTICS = 'REPORTING_AND_ANALYTICS',\n USER_MANAGEMENT = 'USER_MANAGEMENT',\n BILLING = 'BILLING',\n}\n\nexport enum PluginNameTypes {\n ADMIN_PLUGIN = 'ADMIN_PLUGIN',\n REHRIG_VISION = 'REHRIG_VISION',\n HOTWIRE = 'HOTWIRE',\n GOOGLE_SHEET = 'GOOGLE_SHEET',\n CONDITIONAL_REDIRECT = 'CONDITIONAL_REDIRECT',\n GOOGLE_PLACES = 'GOOGLE_PLACES',\n REHRIG_BARRIE_ADDRESS_DYNAMO_DB = 'REHRIG_BARRIE_ADDRESS_DYNAMO_DB',\n GUND = 'GUND',\n KLAVIYO = 'KLAVIYO',\n REHRIG_VISION_TRACK = 'REHRIG_VISION_TRACK',\n STANFORD_RD = 'STANFORD_RD',\n}\n\nexport enum PluginStatus {\n ACTIVE = 'ACTIVE',\n INACTIVE = 'INACTIVE',\n SUSPENDED = 'SUSPENDED',\n}\n\nexport enum PricePlanName {\n FREE = 'free',\n PAYASYOUGO = 'payAsYouGo',\n ADVANCED = 'advanced',\n PRO = 'pro',\n ENTERPRISE_CUSTOM = 'enterpriseCustom',\n UNLIMITED = 'unlimited',\n ENGAGE_STARTER_MONTHLY = 'engageStarterMonthly',\n ENGAGE_STARTER_YEARLY = 'engageStarterYearly',\n ENGAGE_PRO_MONTHLY = 'engageProMonthly',\n ENGAGE_PRO_YEARLY = 'engageProYearly',\n ENGAGE_PREMIUM_MONTHLY = 'engagePremiumMonthly',\n ENGAGE_PREMIUM_YEARLY = 'engagePremiumYearly',\n ENGAGE_ENTERPRISE_CUSTOM = 'engageEnterpriseCustom',\n ENGAGE_ADDON = 'engageAddon',\n}\n\nexport enum PricePlanPaymentPeriod {\n MONTHLY = 'monthly',\n ANNUAL = 'annual',\n}\n\nexport enum PricePlanReporting {\n BASIC = 'basic',\n ADVANCED = 'advanced',\n basic = 'basic',\n advance = 'advanced',\n}\n\nexport enum PrintFormat {\n A3 = 'A3',\n A4 = 'A4',\n A5 = 'A5',\n LETTER = 'LETTER',\n LEGAL = 'LEGAL',\n}\n\nexport enum PrintMode {\n SINGLE = 'SINGLE',\n MULTIPLE = 'MULTIPLE',\n}\n\nexport enum PrintOrientation {\n PORTRAIT = 'PORTRAIT',\n LANDSCAPE = 'LANDSCAPE',\n}\n\nexport enum PrintTemplate {\n AVERY_5160 = 'AVERY_5160',\n AVERY_5163 = 'AVERY_5163',\n AVERY_94103 = 'AVERY_94103',\n AVERY_22806 = 'AVERY_22806',\n AVERY_22805 = 'AVERY_22805',\n OL914 = 'OL914',\n OL3012LP = 'OL3012LP',\n OL3012LPCustom = 'OL3012LPCustom',\n CLOUD_TAGS_15 = 'CLOUD_TAGS_15',\n CLOUD_TAGS_20 = 'CLOUD_TAGS_20',\n LUGGAGE_TAGS_SINGLE = 'LUGGAGE_TAGS_SINGLE',\n LUGGAGE_TAGS_5_X_5 = 'LUGGAGE_TAGS_5_X_5',\n CT_8_X_6_GRIPPER = 'CT_8_X_6_GRIPPER',\n MINI_CLOUD_TAGS_4_X_3 = 'MINI_CLOUD_TAGS_4_X_3',\n}\n\nexport enum PrintUnit {\n IN = 'IN',\n CM = 'CM',\n MM = 'MM',\n PT = 'PT',\n}\n\nexport enum ProjectSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n SCAN_COUNT = 'SCAN_COUNT',\n QR_CODE_COUNT = 'QR_CODE_COUNT',\n CONTACT_COUNT = 'CONTACT_COUNT',\n ASSET_COUNT = 'ASSET_COUNT',\n}\n\nexport enum ProjectStatus {\n ACTIVE = 'ACTIVE',\n SUSPENDED = 'SUSPENDED',\n}\n\nexport enum QrCodeCornerDotTypes {\n dot = 'dot',\n square = 'square',\n}\n\nexport enum QrCodeCornerSquareTypes {\n dot = 'dot',\n square = 'square',\n extra_rounded = 'extra-rounded',\n}\n\nexport enum QrCodeDotTypes {\n classy = 'classy',\n classy_rounded = 'classy-rounded',\n dots = 'dots',\n extra_rounded = 'extra-rounded',\n rounded = 'rounded',\n square = 'square',\n}\n\nexport enum QrCodeDynamicRedirectType {\n NO_SCAN_ID = 'NO_SCAN_ID',\n SCAN_ID_IN_PATH_PARAMETER = 'SCAN_ID_IN_PATH_PARAMETER',\n SCAN_ID_IN_QUERY_STRING_PARAMETER = 'SCAN_ID_IN_QUERY_STRING_PARAMETER',\n CUSTOM_QUERY_STRING_PARAMETER = 'CUSTOM_QUERY_STRING_PARAMETER',\n}\n\nexport enum QrCodeErrorCorrectionLevel {\n L = 'L',\n M = 'M',\n Q = 'Q',\n H = 'H',\n}\n\nexport enum QrCodeGradientTypes {\n linear = 'linear',\n radial = 'radial',\n}\n\nexport enum QrCodeIntentType {\n STATIC_REDIRECT = 'STATIC_REDIRECT',\n DYNAMIC_REDIRECT = 'DYNAMIC_REDIRECT',\n DYNAMIC_REDIRECT_TO_APP = 'DYNAMIC_REDIRECT_TO_APP',\n}\n\nexport enum QrCodeLocatorKeyType {\n SHORT_URL = 'SHORT_URL',\n HASHED_ID = 'HASHED_ID',\n SECURE_ID = 'SECURE_ID',\n}\n\nexport enum QrCodeSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n SCAN_COUNT = 'SCAN_COUNT',\n}\n\nexport enum QrCodeStatus {\n ACTIVE = 'ACTIVE',\n INACTIVE = 'INACTIVE',\n SUSPENDED = 'SUSPENDED',\n UNSAFE = 'UNSAFE',\n}\n\nexport enum QrCodeType {\n PNG = 'PNG',\n JPEG = 'JPEG',\n SVG = 'SVG',\n png = 'png',\n jpeg = 'jpeg',\n svg = 'svg',\n}\n\nexport enum QueryConditions {\n EQUALS = 'EQUALS',\n LESS_THAN = 'LESS_THAN',\n LESS_THAN_EQUAL = 'LESS_THAN_EQUAL',\n GREATER_THAN = 'GREATER_THAN',\n GREATER_THAN_EQUAL = 'GREATER_THAN_EQUAL',\n BETWEEN = 'BETWEEN',\n BEGINS_WITH = 'BEGINS_WITH',\n}\n\nexport enum ScanTimelineOptions {\n DAILY = 'DAILY',\n HOURLY = 'HOURLY',\n}\n\nexport enum StickerShape {\n SQUARE = 'SQUARE',\n CIRCLE = 'CIRCLE',\n RECTANGLE = 'RECTANGLE',\n}\n\nexport enum TagActions {\n ACTIVATED = 'ACTIVATED',\n MODIFIED = 'MODIFIED',\n}\n\nexport enum TagStates {\n ACTIVE = 'ACTIVE',\n INACTIVE = 'INACTIVE',\n USER_INFO_COLLECTION = 'USER_INFO_COLLECTION',\n}\n\nexport enum UserCredentialsStatus {\n COMPROMISED = 'COMPROMISED',\n CONFIRMED = 'CONFIRMED',\n LEGACY = 'LEGACY',\n NEW_EMAIL = 'NEW_EMAIL',\n NEW_EMAIL_CONFIRMED = 'NEW_EMAIL_CONFIRMED',\n NEW_PASSWORD = 'NEW_PASSWORD',\n SUSPENDED = 'SUSPENDED',\n UNCONFIRMED = 'UNCONFIRMED',\n CONFIRMED_NO_PASSWORD = 'CONFIRMED_NO_PASSWORD',\n CONFIRMED_SSO = 'CONFIRMED_SSO',\n}\n\nexport enum UserGroups {\n appuser = 'appuser',\n appadmin = 'appadmin',\n}\n\nexport enum UserMediaFileTypes {\n pdf = 'pdf',\n jpg = 'jpg',\n HEIC = 'HEIC',\n heic = 'heic',\n png = 'png',\n mov = 'mov',\n mp4 = 'mp4',\n jpeg = 'jpeg',\n ttf = 'ttf',\n otf = 'otf',\n woff = 'woff',\n woff2 = 'woff2',\n csv = 'csv',\n json = 'json',\n gif = 'gif',\n bmp = 'bmp',\n webp = 'webp',\n svg = 'svg',\n tiff = 'tiff',\n webm = 'webm',\n ogg = 'ogg',\n avi = 'avi',\n mpeg = 'mpeg',\n css = 'css',\n}\n\nexport enum UserMediaSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n FILE_TYPE = 'FILE_TYPE',\n CATEGORY = 'CATEGORY',\n}\n\nexport enum UserSettingsDomain {\n DASHBOARD = 'DASHBOARD',\n}\n\n// APPLICATION ENTITIES\n\nexport interface Account {\n accountId: string\n accountStatus?: AccountStatus\n assetCount: number\n campaignStatus?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface AccountAuth {\n accountId: string\n clientId: string\n created?: string | Date | number | null\n encryptedClientSecret: string\n modified?: string | Date | number | null\n prompt?: string | null\n tenantId?: string | null\n type: AuthTypes\n}\n\nexport interface AccountByAccountId {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface AccountByAccountStatus {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n accountStatus: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface AccountByAssetCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n assetCount: number\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface AccountByClientExec {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n clientExec: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface AccountByCompanyName {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n companyName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface AccountByContactCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n contactCount: number\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface AccountByDynamicQRCodeCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n dynamicQrCodeCount: number\n modified?: string | Date | number | null\n}\n\nexport interface AccountByLastActivity {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n lastActivity: string | Date | number\n modified?: string | Date | number | null\n}\n\nexport interface AccountByPricePlanName {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n pricePlanName: string\n}\n\nexport interface AccountByProductName {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n productName: string\n timestamp: string | Date | number\n}\n\nexport interface AccountByScanCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n scanCount: number\n}\n\nexport interface AccountBySmsCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n smsCount: number\n}\n\nexport interface AccountByStaticQRCodeCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n staticQrCodeCount: number\n}\n\nexport interface AccountByTimestamp {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface AccountByUserCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n userCount: number\n}\n\nexport interface AccountDomain {\n accountId: string\n cnameValue?: string | null\n created?: string | Date | number | null\n customDomain: string\n hostedZoneId?: string | null\n modified?: string | Date | number | null\n nameServers?: Array<any> | null\n projectIds?: Array<any> | null\n status?: DomainStatus\n stepSchedulerId?: string | null\n title?: string | null\n type?: AccountDomainTypes\n}\n\nexport interface AccountDomainByType {\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n customDomain: string\n modified?: string | Date | number | null\n timestamp: string | Date | number\n type: string\n}\n\nexport interface AccountEmailContact {\n accountId: string\n contactId: string\n created?: string | Date | number | null\n email: string\n modified?: string | Date | number | null\n}\n\nexport interface AccountInstalledApp {\n accountId: string\n appAccountId: string\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n ownerAccountId?: string | null\n}\n\nexport interface AccountInvitation {\n accountId: string\n companyName?: string | null\n created?: string | Date | number | null\n email: string\n expiresAt?: string | Date | number | null\n firstName: string\n invitationId: string\n lastName: string\n modified?: string | Date | number | null\n sendersFirstName: string\n sendersLastName: string\n sendersUserId?: string | null\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface AccountInvitationRequestBody {\n email: string\n firstName: string\n lastName: string\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface AccountPhoneContact {\n accountId: string\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n phone: string\n}\n\nexport interface AccountPlugin {\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n isEnabled?: boolean\n modified?: string | Date | number | null\n pluginConfig?: NestedKeyValueObject\n pluginId: string\n}\n\nexport interface AccountPublishedApp {\n appId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n ownerAccountId: string\n}\n\nexport interface AccountResponse extends Account {\n accountId: string\n accountStatus?: AccountStatus\n assetCount: number\n campaignStatus?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n currentPeriod: PricePlanPeriod\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n pricePlan: PricePlan\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface AccountScan {\n accountId: string\n assetId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n scanId: string\n}\n\nexport interface AccountSmsCampaign {\n accountId: string\n campaignInfo?: SmsCampaignRequest | null\n campaignStatus?: string | null\n created?: string | Date | number | null\n errorCode?: string | null\n lastFetchedAt?: string | Date | number | null\n modified?: string | Date | number | null\n rejectionReason?: string | null\n twilioAccountSid: string\n twilioPhoneNumber?: string | null\n twilioPhoneNumberSid?: string | null\n}\n\nexport interface AccountUser {\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n userId: string\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface ApiKey {\n apiKeyId: string\n created?: string | Date | number | null\n description?: string | null\n key: string\n modified?: string | Date | number | null\n name: string\n}\n\nexport interface ApiKeyCredentials {\n algorithm?: string\n apiKeyId: string\n created?: string | Date | number | null\n description?: string | null\n invalidAttemptCount: number\n key: string\n modified?: string | Date | number | null\n name: string\n secret?: string | null\n status: string\n}\n\nexport interface ApiKeySessionResponseBody {\n apiKeyId: string\n expires: string | Date | number\n scope: AuthTokenScope\n}\n\nexport interface App {\n appDetailMedia?: string[] | null\n appId: string\n appName: string\n appPrice: number\n appStoreThumbnail?: string | null\n appWebhook?: string | null\n bannerImage?: string | null\n cardImage?: string | null\n categories?: Array<any> | null\n created?: string | Date | number | null\n description?: string | null\n featured?: boolean\n features?: string | null\n heroImage?: string | null\n isPublished?: boolean\n keywords?: Array<any> | null\n logo?: string | null\n modified?: string | Date | number | null\n ownerAccountId: string\n pricePlanPoints?: Array<any> | null\n tagline?: string | null\n uiUrl: string\n website?: string | null\n}\n\nexport interface AppAccount {\n appAccountId: string\n appId: string\n appName: string\n assetCount: number\n contactCount: number\n created?: string | Date | number | null\n dynamicQrCodeCount: number\n emailCount: number\n lastScanId?: string | null\n mainAccountId: string\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n userCount: number\n webSessionCount?: number | null\n}\n\nexport interface AppBasicDetails {\n appAccountId: string\n appId: string\n appLogo?: string | null\n appName: string\n mainAccountId: string\n}\n\nexport interface AppByName {\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface AppByTimestamp {\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface Asset {\n appAccountId?: string | null\n appId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n category?: string | null\n childAssets?: NestedKeyValueObject | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n dynamicQrCodeCount: number\n isValidChildAssets?: boolean | null\n isValidCustomAttributes?: boolean | null\n lastCommittedCustomAttributes?: NestedKeyValueObject | null\n lastGeolocationScanTime?: string | Date | number | null\n lastScanGeolocationCoordinates?: string | null\n lastScanId?: string | null\n lastScanLocationCoordinates?: string | null\n lastScanTime?: string | Date | number | null\n locationId?: string | null\n mediaCount?: number | null\n mediaIds?: Array<any> | null\n modified?: string | Date | number | null\n name: string\n parentAssetId?: string | null\n projectId: string\n qrCodeLinks?: Array<any> | null\n scanCount: number\n state?: string | null\n staticQrCodeCount: number\n thumbnails?: Array<any> | null\n userMedias?: UserMedia[] | null\n webSessionCount?: number | null\n willCreateSession?: boolean | null\n}\n\nexport interface AssetByAssetTypeNameAssetName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetName: string\n assetTypeId?: string | null\n assetTypeName: string\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n}\n\nexport interface AssetByNumberCustomAttribute {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n indexValue: number\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface AssetByStateAssetTypeName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n assetTypeName: string\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n state?: string\n timestamp: string | Date | number\n}\n\nexport interface AssetByStateAssetTypeNameAssetName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetName: string\n assetTypeId?: string | null\n assetTypeName: string\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n state?: string\n timestamp: string | Date | number\n}\n\nexport interface AssetByStateName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetName: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n state?: string\n timestamp: string | Date | number\n}\n\nexport interface AssetByStateNumberCustomAttribute {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n indexValue: number\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n state: string\n}\n\nexport interface AssetByStateQrCodeCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeCount: number\n state?: string\n}\n\nexport interface AssetByStateScanCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n scanCount: number\n state?: string\n}\n\nexport interface AssetByStateStringCustomAttribute {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n indexValue?: string | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n state: string\n}\n\nexport interface AssetByStateTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n state?: string\n timestamp: string | Date | number\n}\n\nexport interface AssetByStringCustomAttribute {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n indexValue?: string | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface AssetContact {\n assetId: string\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n type?: string | null\n}\n\nexport interface AssetContactByNumberCustomAttribute {\n _prefix?: string\n assetId: string\n contactId: string\n created?: string | Date | number | null\n indexValue: number\n modified?: string | Date | number | null\n}\n\nexport interface AssetContactByRelationshipType {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n type: string\n}\n\nexport interface AssetContactByStringCustomAttribute {\n _prefix?: string\n assetId: string\n contactId: string\n created?: string | Date | number | null\n indexValue?: string | null\n modified?: string | Date | number | null\n}\n\nexport interface AssetFieldsObject {\n assetTypeId?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n locationId?: string | null\n name?: string | null\n qrCodes?: NestedQrCode[] | null\n state?: string | null\n willCreateSession?: boolean | null\n}\n\nexport interface AssetGraph {\n accountId: string\n appAccountId?: string | null\n assetGraphId: string\n created?: string | Date | number | null\n direction?: string\n edges?: AssetGraphEdge[] | null\n modified?: string | Date | number | null\n name: string\n nodes: AssetGraphNode[]\n projectId: string\n}\n\nexport interface AssetGraphByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetGraphId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n}\n\nexport interface AssetGraphEdge {\n source: string\n target: string\n}\n\nexport interface AssetGraphNode {\n assetId: string\n}\n\nexport interface AssetHistory {\n _timestamp: string | Date | number\n appAccountId?: string | null\n appId?: string | null\n assetId?: string | null\n assetTypeId?: string | null\n batchId?: string | null\n category?: string | null\n childAssets?: NestedKeyValueObject | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n dynamicQrCodeCount?: number | null\n expiresAt?: string | Date | number | null\n isValidChildAssets?: boolean | null\n isValidCustomAttributes?: boolean | null\n lastCommittedCustomAttributes?: NestedKeyValueObject | null\n lastGeolocationScanTime?: string | Date | number | null\n lastScanGeolocationCoordinates?: string | null\n lastScanId?: string | null\n lastScanLocationCoordinates?: string | null\n lastScanTime?: string | Date | number | null\n locationId?: string | null\n mediaCount?: number | null\n mediaIds?: Array<any> | null\n modified?: string | Date | number | null\n name?: string | null\n parentAssetId?: string | null\n projectId?: string | null\n qrCodeLinks?: Array<any> | null\n scanCount?: number | null\n state?: string | null\n staticQrCodeCount?: number | null\n thumbnails?: Array<any> | null\n userMedias?: UserMedia[] | null\n webSessionCount?: number | null\n willCreateSession?: boolean | null\n}\n\nexport interface AssetNeighbor {\n created?: string | Date | number | null\n modified?: string | Date | number | null\n source: string\n target: string\n type?: string\n}\n\nexport interface AssetType {\n accountId: string\n appAccountId?: string | null\n appId?: string | null\n assetTypeId: string\n category?: string | null\n childItems?: NestedKeyValueObject | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n instanceCount: number\n instanceProperties?: NestedKeyValueObject | null\n intent?: string | null\n isPreviouslyUsed?: boolean\n managedCount: number\n modified?: string | Date | number | null\n name: string\n staticProperties?: NestedKeyValueObject | null\n usabilityState: AssetTypeUsabilityState\n}\n\nexport interface AssetTypeByLocation {\n assetTypeId: string\n created?: string | Date | number | null\n instanceCount: number\n locationId: string\n locationName?: string | null\n managedCount: number\n modified?: string | Date | number | null\n}\n\nexport interface AssetTypeByStatusName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetTypeId: string\n assetTypeName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n state: string\n timestamp: string | Date | number\n}\n\nexport interface AssetTypeByStatusTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetTypeId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n state: string\n timestamp: string | Date | number\n}\n\nexport interface BadUrlAttempt {\n accountId: string\n appAccountId?: string | null\n assetContent: NestedKeyValueObject\n assetId: string\n badUrlAttemptId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId?: string | null\n qrCodeId: string\n timestamp: string | Date | number\n url: string\n}\n\nexport interface BadUrlAttemptByTimestamp {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n badUrlAttemptId?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId?: string | null\n qrCodeId?: string | null\n timestamp: string | Date | number\n url: string\n}\n\nexport interface BadUrlAttemptByUrl {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n badUrlAttemptId?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId?: string | null\n qrCodeId?: string | null\n timestamp: string | Date | number\n url: string\n}\n\nexport interface BadUrlUsage {\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n usageCount: number\n}\n\nexport interface BadUrlUsageByCreated {\n _GLOBAL: string\n _created: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n}\n\nexport interface BadUrlUsageByModified {\n _GLOBAL: string\n _modified: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n}\n\nexport interface BadUrlUsageByUrl {\n _GLOBAL: string\n _modified: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n}\n\nexport interface BadUrlUsageByUsageCount {\n _GLOBAL: string\n _modified: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n usageCount: number\n}\n\nexport interface Batch {\n accountId: string\n appAccountId?: string | null\n assetCount: number\n batchId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n lastPrinted?: string | Date | number | null\n modified?: string | Date | number | null\n name?: string | null\n projectId: string\n qrCodeCount: number\n source?: string | null\n tagTypeId?: string | null\n timesPrinted: number\n}\n\nexport interface BatchByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n batchId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n source?: string | null\n timestamp: string | Date | number\n}\n\nexport interface CareUIAccounByIdResponse extends Account {\n accountId: string\n accountStatus?: AccountStatus\n appId?: string | null\n appName?: string | null\n assetCount: number\n campaignStatus?: string | null\n clientExec?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n currentPeriod: PricePlanPeriod\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n ownerEmail: string\n ownerFirstName: string\n ownerLastName: string\n ownerMiddleName?: string | null\n paymentFailedDate?: string | null\n pricePlan: PricePlan\n pricePlanName: string\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface CareUIAccountInGetUserResponse {\n accountId: string\n companyName: string\n userRole?: string | null\n userRoleIds?: Array<any>\n}\n\nexport interface CareUIAppResponse {\n createdDate: string | Date | number\n id: string\n name: string\n}\n\nexport interface CareUIClientExecResponse {\n displayName: string\n id: string\n}\n\nexport interface CareUIPortalAccountResponse extends Account {\n accountId: string\n accountStatus?: AccountStatus\n adminUserName: string\n assetCount: number\n campaignStatus?: string | null\n clientExec?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n createdDate: string | Date | number\n currentPeriod: PricePlanPeriod\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastActivity?: string | Date | number | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n pricePlan: PricePlan\n pricePlanName: string\n productName: string\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface CareUIPortalUserResponse extends User {\n created?: string | Date | number | null\n createdDate: string | Date | number\n email: string\n firstName: string\n lastName: string\n middleName: string\n modified?: string | Date | number | null\n ssoIdentity?: NestedKeyValueObject | null\n userId: string\n}\n\nexport interface CareUIUserByIdResponse extends User {\n accounts: CareUIAccountInGetUserResponse[]\n created?: string | Date | number | null\n email: string\n firstName: string\n lastName: string\n middleName: string\n modified?: string | Date | number | null\n ssoIdentity?: NestedKeyValueObject | null\n userId: string\n}\n\nexport interface Contact {\n accountId: string\n appAccountId?: string | null\n appId?: string | null\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n firstName: string\n isVisible?: boolean | null\n lastCommittedAttributes?: NestedKeyValueObject | null\n lastName: string\n lastScan?: LastScan | null\n lastScanProjectName?: string | null\n lastSms?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName: string\n modified?: string | Date | number | null\n nickname: string\n scanCount: number\n type?: string | null\n}\n\nexport interface ContactAccountCustomConsent {\n accountId: string\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactAccountDataConsent {\n accountId: string\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactAccountEmailConsent {\n accountId: string\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactAccountSmsConsent {\n accountId: string\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactByNumberCustomAttribute {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n contactId: string\n created?: string | Date | number | null\n indexValue: number\n modified?: string | Date | number | null\n}\n\nexport interface ContactByStringCustomAttribute {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n contactId: string\n created?: string | Date | number | null\n indexValue?: string | null\n modified?: string | Date | number | null\n}\n\nexport interface ContactConsent {\n accountId?: string | null\n accountName?: string | null\n consentStatus?: ConsentStatus | null\n consentType?: ConsentType | null\n consented: boolean\n consentedAt: string | Date | number\n contactId?: string | null\n customAttributes?: NestedKeyValueObject | null\n projectId?: string | null\n projectName?: string | null\n url?: string | null\n urls?: string[] | null\n}\n\nexport interface ContactHistory {\n _timestamp: string | Date | number\n accountId?: string | null\n appAccountId?: string | null\n appId?: string | null\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n contactId?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n expiresAt?: string | Date | number | null\n firstName?: string | null\n isVisible?: boolean | null\n lastCommittedAttributes?: NestedKeyValueObject | null\n lastName?: string | null\n lastScan?: LastScan | null\n lastScanProjectName?: string | null\n lastSms?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName?: string | null\n modified?: string | Date | number | null\n nickname?: string | null\n scanCount?: number | null\n type?: string | null\n}\n\nexport interface ContactInvite {\n accountId: string\n appInviteUrl?: string | null\n companyName?: string | null\n created?: string | Date | number | null\n email: string\n expiresAt?: string | Date | number | null\n firstName: string\n invitationId: string\n invitedByUserId: string\n invitedByUserName?: string | null\n isConsumed?: boolean\n lastName: string\n modified?: string | Date | number | null\n projectId: string\n refreshCount: number\n userRole?: AccountUserRole | null\n}\n\nexport interface ContactMailingAddress {\n address?: string | null\n city?: string | null\n country?: string | null\n postalOrZip?: string | null\n provinceOrState?: string | null\n}\n\nexport interface ContactProjectCustomConsent {\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n projectId: string\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactProjectDataConsent {\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n projectId: string\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactProjectEmailConsent {\n accountId: string\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n projectId: string\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactProjectSmsConsent {\n accountId: string\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n projectId: string\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactUser {\n accountId: string\n companyName?: string | null\n contactId: string\n created?: string | Date | number | null\n email: string\n firstName?: string | null\n invalidAttemptCount: number\n lastName?: string | null\n modified?: string | Date | number | null\n password?: string | null\n revokedAt?: string | Date | number | null\n status?: UserCredentialsStatus\n userRole?: AccountUserRole | null\n}\n\nexport interface CreditCard {\n brand: string\n country: string\n expMonth: number\n expYear: number\n last4: string\n postalCode: string\n}\n\nexport interface CustomAttribute {\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n customAttributeName: string\n fieldType: FieldType\n mappedCAName?: string | null\n modified?: string | Date | number | null\n}\n\nexport interface DomainMappedQRLocatorKey {\n accountId: string\n created?: string | Date | number | null\n customDomain: string\n locatorKey: string\n modified?: string | Date | number | null\n qrCodeId: string\n serializedLocatorKey: string\n}\n\nexport interface EmailInvitation {\n accountId: string\n created?: string | Date | number | null\n email: string\n expiresAt?: string | Date | number | null\n invitationId: string\n modified?: string | Date | number | null\n}\n\nexport interface InternalAccountByAccountId {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface InternalAccountByAccountStatus {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n accountStatus: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface InternalAccountByAssetCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n assetCount: number\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface InternalAccountByClientExec {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n clientExec: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface InternalAccountByCompanyName {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n companyName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface InternalAccountByContactCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n contactCount: number\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface InternalAccountByDynamicQRCodeCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n dynamicQrCodeCount: number\n modified?: string | Date | number | null\n}\n\nexport interface InternalAccountByLastActivity {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n lastActivity: string | Date | number\n modified?: string | Date | number | null\n}\n\nexport interface InternalAccountByPricePlanName {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n pricePlanName: string\n}\n\nexport interface InternalAccountByProductName {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n productName: string\n timestamp: string | Date | number\n}\n\nexport interface InternalAccountByScanCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n scanCount: number\n}\n\nexport interface InternalAccountBySmsCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n smsCount: number\n}\n\nexport interface InternalAccountByStaticQRCodeCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n staticQrCodeCount: number\n}\n\nexport interface InternalAccountByTimestamp {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface InternalAccountByUserCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n userCount: number\n}\n\nexport interface Invoice {\n amount: number\n downloadUrl?: string | null\n dueDate?: string | null\n id: string\n name: string\n paymentMethod?: CreditCard | null\n status?: InvoiceStatus\n}\n\nexport interface Job {\n accountId: string\n appAccountId?: string | null\n callbackUrl?: string | null\n childJobIds?: Array<any> | null\n created?: string | Date | number | null\n errorMessage?: NestedKeyValueObject | null\n expires?: string | Date | number | null\n expiresAt?: string | Date | number | null\n fileExpiry?: string | Date | number | null\n fileName?: string | null\n jobId: string\n modified?: string | Date | number | null\n name?: string | null\n outputUrl?: string | null\n outputUrls?: Array<any>\n parentJobId?: string | null\n progress?: number | null\n projectId?: string | null\n source?: string | null\n status?: JobStatus\n type: JobType\n}\n\nexport interface JobByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n jobId: string\n modified?: string | Date | number | null\n projectId?: string | null\n source?: string | null\n timestamp: string | Date | number\n}\n\nexport interface LastScan {\n assetId: string\n assetName: string\n browserName?: string | null\n browserVersion?: string | null\n cpuArchitecture?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n deviceModel?: string | null\n deviceType?: string | null\n deviceVendor?: string | null\n engineName?: string | null\n engineVersion?: string | null\n geolocationCityName?: string | null\n geolocationCountryCode?: string | null\n geolocationCountryName?: string | null\n geolocationLatitude?: string | null\n geolocationLongitude?: string | null\n geolocationPostalCode?: string | null\n geolocationRegionCode?: string | null\n geolocationRegionName?: string | null\n ipAddress?: string | null\n locationCityName?: string | null\n locationCountryCode?: string | null\n locationCountryName?: string | null\n locationLatitude?: string | null\n locationLongitude?: string | null\n locationPostalCode?: string | null\n locationRegionCode?: string | null\n locationRegionName?: string | null\n locationTimeZone?: string | null\n modified?: string | Date | number | null\n osName?: string | null\n osVersion?: string | null\n projectId: string\n qrCodeId?: string | null\n scanId: string\n scanTime: string | Date | number\n sessionId?: string | null\n userAgent?: string | null\n}\n\nexport interface Location {\n accountId: string\n address?: string | null\n appAccountId?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n isPreviouslyUsed?: boolean\n locationId: string\n modified?: string | Date | number | null\n name: string\n state?: string | null\n}\n\nexport interface LocationByStateName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n locationId: string\n locationName: string\n modified?: string | Date | number | null\n state: string\n timestamp: string | Date | number\n}\n\nexport interface LocationByStateTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n locationId: string\n locationName: string\n modified?: string | Date | number | null\n state: string\n timestamp: string | Date | number\n}\n\nexport interface LocationByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n locationId: string\n locationName: string\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface MostScannedAssetResponse {\n assetId?: string | null\n lastScanDate?: string | Date | number | null\n name: string\n projectId?: string | null\n todaysScansCount?: number | null\n totalScansCount?: number | null\n weeklyScansCount?: number | null\n}\n\nexport interface MultipartUploadPart {\n ETag?: string | null\n PartNumber?: number\n}\n\nexport interface NestedAsset {\n category?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n locationId?: string | null\n name: string\n qrCodes?: NestedQrCode[] | null\n state?: string | null\n willCreateSession?: boolean | null\n}\n\nexport interface NestedContact {\n asset?: NestedAsset | null\n assetId?: string | null\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n firstName?: string | null\n lastName?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName?: string | null\n nickname?: string | null\n type?: string | null\n}\n\nexport interface NestedQrCode {\n customQueryStringParameterName?: string\n dynamicRedirectType?: QrCodeDynamicRedirectType\n imageOptions?: QrCodeImageOptions\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n intentType?: QrCodeIntentType\n isAskingForGPS?: boolean | null\n locatorKeyType?: QrCodeLocatorKeyType\n serializedLocatorKey?: string | null\n status?: QrCodeStatus | null\n stylingTemplateId?: string | null\n validFrom?: string | Date | number | null\n validTo?: string | Date | number | null\n}\n\nexport interface NestedTypedAsset {\n category?: string | null\n childAssets?: NestedKeyValueObject | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n locationId?: string | null\n name?: string | null\n qrCodes?: NestedQrCode[] | null\n state?: string | null\n}\n\nexport interface NewAppByName {\n _GLOBAL: string\n _prefix?: string\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n ownerAccountId: string\n timestamp: string | Date | number\n}\n\nexport interface NewAppByTimestamp {\n _GLOBAL: string\n _prefix?: string\n appId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n ownerAccountId: string\n timestamp: string | Date | number\n}\n\nexport interface NewAssetByAssetType {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n assetTypeName: string\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n}\n\nexport interface NewAssetByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetName: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n}\n\nexport interface NewAssetByQrCodeCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeCount: number\n}\n\nexport interface NewAssetByScanCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n scanCount: number\n}\n\nexport interface NewAssetByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n}\n\nexport interface NewAssetTypeByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetTypeId: string\n assetTypeName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface NewAssetTypeByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetTypeId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface NewLocationByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n locationId: string\n locationName: string\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface NewProjectByAssetCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetCount: number\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface NewProjectByContactCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n contactCount: number\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface NewProjectByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n projectName: string\n timestamp: string | Date | number\n}\n\nexport interface NewProjectByQrCodeCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeCount: number\n}\n\nexport interface NewProjectByScanCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n scanCount: number\n}\n\nexport interface NewProjectByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n}\n\nexport interface NewPublishedAppByName {\n _GLOBAL: string\n _prefix?: string\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n ownerAccountId: string\n timestamp: string | Date | number\n}\n\nexport interface NewPublishedAppByTimestamp {\n _GLOBAL: string\n _prefix?: string\n appId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n ownerAccountId: string\n timestamp: string | Date | number\n}\n\nexport interface NewQrCodeByAssetName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetName: string\n batchId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId: string\n timestamp: string | Date | number\n}\n\nexport interface NewQrCodeByScanCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n batchId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId: string\n scanCount: number\n}\n\nexport interface NewQrCodeByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n batchId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId: string\n timestamp: string | Date | number\n}\n\nexport interface NewQrCodeLogoByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n qrCodeLogoId: string\n timestamp: string | Date | number\n}\n\nexport interface NewQrCodeStylingTemplateByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n stylingTemplateId: string\n stylingTemplateName: string\n timestamp: string | Date | number\n}\n\nexport interface NewQrCodeStylingTemplateByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n stylingTemplateId: string\n timestamp: string | Date | number\n}\n\nexport interface NewScanByAssetName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetName: string\n contactId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n scanId: string\n sessionId?: string | null\n timestamp: string | Date | number\n}\n\nexport interface NewScanByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n contactId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n scanId: string\n sessionId?: string | null\n timestamp: string | Date | number\n}\n\nexport interface PatchApp {\n appDetailMedia?: string[] | null\n appPrice?: number | null\n appStoreThumbnail?: string | null\n appWebhook?: string | null\n bannerImage?: string | null\n cardImage?: string | null\n categories?: Array<any> | null\n created?: string | Date | number | null\n description?: string | null\n featured?: boolean | null\n features?: string | null\n heroImage?: string | null\n isPublished?: boolean | null\n keywords?: Array<any> | null\n logo?: string | null\n modified?: string | Date | number | null\n pricePlanPoints?: Array<any> | null\n tagline?: string | null\n uiUrl?: string | null\n website?: string | null\n}\n\nexport interface PhoneSession {\n contactId: string\n contactPhone: string\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n modified?: string | Date | number | null\n smsId: string\n twilioPhone: string\n}\n\nexport interface Plugin {\n appId: string\n created?: string | Date | number | null\n icon: string\n installCount: number\n modified?: string | Date | number | null\n name: string\n pluginId: string\n status?: PluginStatus\n version?: number\n}\n\nexport interface PluginByModified {\n _GLOBAL: string\n _prefix?: string\n appId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n pluginId: string\n timestamp: string | Date | number\n}\n\nexport interface PluginByName {\n _GLOBAL: string\n _prefix?: string\n appId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n name: string\n pluginId: string\n timestamp: string | Date | number\n}\n\nexport interface PricePlan {\n annualPrice: number\n assets: number\n contacts: number\n created?: string | Date | number | null\n dataExport: boolean\n downgradeDate?: string | Date | number | null\n emails: number\n freeEmailPerMonth?: number | null\n freeSmsPerMonth?: number | null\n mms: number\n modified?: string | Date | number | null\n monthlyPrice: number\n name: string\n nextPricePlanName?: string | null\n paymentPeriod?: string | null\n pricePerAsset: number\n pricePerContact: number\n pricePerEmail: number\n pricePerSMS: number\n pricePlanId: string\n projects: number\n qrCodes: number\n reporting?: PricePlanReporting\n roleBasedManagement: boolean\n sms: number\n stripeCustomerId: string\n stripeSubscriptionId: string\n totalScans: number\n users: number\n visibleContacts?: number | null\n}\n\nexport interface PricePlanPeriod {\n assetsLimit?: number | null\n assetsTotal: number\n contactsLimit?: number | null\n contactsTotal: number\n created?: string | Date | number | null\n emailAmountCharged?: number | null\n emailsLimit?: number | null\n emailsSentThisPeriod?: number | null\n emailsTotal: number\n freeEmailPerMonth?: number | null\n freeSmsPerMonth?: number | null\n invoiceId?: string | null\n mmsAmountCharged?: number | null\n mmsLimit?: number | null\n mmsSentThisPeriod?: number | null\n mmsTotal: number\n modified?: string | Date | number | null\n period: string | Date | number\n periodEndDate: string | Date | number\n pricePlanId: string\n projectsLimit?: number | null\n projectsTotal: number\n qrCodesLimit?: number | null\n qrCodesTotal: number\n qrScansLimit?: number | null\n scansUsedTotal: number\n smsAmountCharged?: number | null\n smsLimit?: number | null\n smsSentThisPeriod?: number | null\n smsTotal: number\n status?: string | null\n usersLimit?: number | null\n usersTotal: number\n visibleContacts?: number | null\n}\n\nexport interface PrintJob {\n accountId: string\n appAccountId?: string | null\n assetIds?: Array<any> | null\n callbackUrl?: string | null\n created?: string | Date | number | null\n createdBy?: string | null\n errorMessage?: NestedKeyValueObject | null\n fileExpiry?: string | Date | number | null\n imageOptions?: QrCodeImageOptions | null\n lastPrintedAt?: string | Date | number | null\n modified?: string | Date | number | null\n name?: string\n numberOfQrCodes?: number | null\n outputUrl?: string | null\n outputUrls?: Array<any>\n parentJobId?: string | null\n printJobId: string\n printOptions?: PrintOptions | null\n printPageTemplateName?: string | null\n printStickerTemplateName?: string | null\n progress?: number | null\n projectId?: string | null\n serializedFabric?: NestedKeyValueObject | null\n sortField?: QrCodeSortingTypes | null\n source?: string | null\n status?: JobStatus\n stylingTemplateId?: string | null\n type?: JobType\n}\n\nexport interface PrintOptions {\n bleed?: boolean | null\n bottomCaptionLabel?: Label\n bottomCaptionLabelHorizontalOffset?: number | null\n bottomCaptionLabelVerticalOffset?: number | null\n bottomLabel?: Label\n customBottomCaptionLabel?: string | null\n customBottomLabel?: string | null\n customMaxLength?: number | null\n customMiddleLabel?: string | null\n customTopCaptionLabel?: string | null\n customTopLabel?: string | null\n fontColor?: string | null\n fontFamily?: string | null\n format?: PrintFormat | null\n horizontalMargin?: number | null\n horizontalOffset?: number | null\n horizontalPadding?: number | null\n isMiniBatch?: boolean | null\n largeFontSize?: number | null\n maxLength?: number | null\n middleLabel?: Label\n numberOfColumns?: number | null\n numberOfRows?: number | null\n orientation?: PrintOrientation\n pageSize?: Array<any> | null\n prefixLocatorKey?: boolean | null\n printMode?: PrintMode\n printPageTemplateId?: string | null\n printStickerTemplateId?: string | null\n printTemplate?: PrintTemplate | null\n qrCodeHorizontalOffset?: number | null\n qrCodeSize?: number | null\n qrCodeVerticalOffset?: number | null\n quantityPerQr?: number | null\n smallFontSize?: number | null\n stickerBackground?: string | null\n stickerShape?: StickerShape | null\n stickerSize?: Array<any> | null\n topCaptionLabel?: Label | null\n topCaptionLabelHorizontalOffset?: number | null\n topCaptionLabelVerticalOffset?: number | null\n topLabel?: Label\n topLabelMaxLength?: number | null\n topMarginBackground?: string | null\n unit?: PrintUnit\n verticalMargin?: number | null\n verticalOffset?: number | null\n verticalPadding?: number | null\n}\n\nexport interface PrintPageTemplate {\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n createdBy: string\n format?: PrintFormat | null\n horizontalMargin: number\n horizontalPadding: number\n isDeleted?: boolean | null\n modified?: string | Date | number | null\n name: string\n numberOfColumns: number\n numberOfRows: number\n orientation?: PrintOrientation | null\n pageSize: Array<any>\n printMode?: PrintMode | null\n printPageTemplateId: string\n printTemplate?: PrintTemplate | null\n stickerShape: StickerShape\n stickerSize: Array<any>\n unit?: PrintUnit\n verticalMargin: number\n verticalPadding: number\n}\n\nexport interface PrintPageTemplateByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n name: string\n printPageTemplateId: string\n timestamp: string | Date | number\n}\n\nexport interface PrintPageTemplateByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n printPageTemplateId: string\n timestamp: string | Date | number\n}\n\nexport interface PrintStickerTemplate {\n accountId: string\n appAccountId?: string | null\n bleed?: boolean | null\n created?: string | Date | number | null\n createdBy: string\n isDeleted?: boolean | null\n lastUsedAt?: string | Date | number | null\n modified?: string | Date | number | null\n name: string\n previewImage?: string | null\n printStickerTemplateId: string\n serializedFabric: NestedKeyValueObject\n stickerShape?: StickerShape\n stickerSize?: Array<any>\n unit?: PrintUnit\n}\n\nexport interface PrintStickerTemplateByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n name: string\n printStickerTemplateId: string\n timestamp: string | Date | number\n}\n\nexport interface PrintStickerTemplateByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n printStickerTemplateId: string\n timestamp: string | Date | number\n}\n\nexport interface Project {\n accountId: string\n appAccountId?: string | null\n appId?: string | null\n assetCount: number\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n customDomain?: string | null\n description?: string | null\n dynamicQrCodeCount: number\n lastScanId?: string | null\n mediaCount?: number | null\n micrositeCustomDomain?: string | null\n modified?: string | Date | number | null\n name: string\n projectId: string\n scanCount: number\n staticQrCodeCount: number\n status?: ProjectStatus\n webSessionCount?: number | null\n workflowCustomDomain?: string | null\n}\n\nexport interface ProjectAccount {\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface ProjectContact {\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface ProjectContactByNumberCustomAttribute {\n _prefix?: string\n contactId: string\n created?: string | Date | number | null\n indexValue: number\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface ProjectContactByStringCustomAttribute {\n _prefix?: string\n contactId: string\n created?: string | Date | number | null\n indexValue?: string | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface ProjectDomain {\n created?: string | Date | number | null\n customDomain: string\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface ProjectEmailContact {\n contactId: string\n created?: string | Date | number | null\n email: string\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface ProjectPhoneContact {\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n phone: string\n projectId: string\n}\n\nexport interface ProjectScan {\n assetId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n scanId: string\n}\n\nexport interface PublishedAppByName {\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface PublishedAppByTimestamp {\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface QrCode {\n appAccountId?: string | null\n appId?: string | null\n assetId: string\n batchId?: string | null\n created?: string | Date | number | null\n customDomain?: string | null\n customQueryStringParameterName?: string\n dynamicRedirectType?: QrCodeDynamicRedirectType\n imageOptions?: QrCodeImageOptions\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n intentType?: QrCodeIntentType\n isAskingForGPS?: boolean | null\n locatorKey: string\n locatorKeyType?: QrCodeLocatorKeyType\n modified?: string | Date | number | null\n name: string\n projectId?: string | null\n qrCodeId: string\n qrDomain?: string | null\n scanCount: number\n serializedLocatorKey?: string | null\n status?: QrCodeStatus\n stylingTemplateId?: string | null\n validFrom?: string | Date | number | null\n validTo?: string | Date | number | null\n}\n\nexport interface QrCodeByIntent {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n batchId?: string | null\n created?: string | Date | number | null\n intent: string\n modified?: string | Date | number | null\n projectId: string\n qrCodeId: string\n timestamp: string | Date | number\n}\n\nexport interface QrCodeImage {\n data: string\n options?: QrCodeImageOptions\n}\n\nexport interface QrCodeImageOptions {\n background?: string\n backgroundGradientColors?: string | null\n backgroundGradientRotation?: number | null\n backgroundGradientType?: QrCodeGradientTypes | null\n cornerDotColor?: string | null\n cornerDotType?: QrCodeCornerDotTypes | null\n cornerSquareColor?: string | null\n cornerSquareType?: QrCodeCornerSquareTypes | null\n darkColor?: string | null\n dataUrl?: boolean\n dotType?: QrCodeDotTypes | null\n errorCorrectionLevel?: QrCodeErrorCorrectionLevel\n foreground?: string\n foregroundGradientColors?: string | null\n foregroundGradientRotation?: number | null\n foregroundGradientType?: QrCodeGradientTypes | null\n format?: QrCodeType\n lightColor?: string | null\n logo?: string | null\n logoMargin?: number\n margin?: number\n qrCodeLogoId?: string | null\n saveAsBlob?: boolean | null\n scale?: number\n version?: number | null\n width?: number\n}\n\nexport interface QrCodeImageOptionsNoDefaults {\n background?: string | null\n backgroundGradientColors?: string | null\n backgroundGradientRotation?: number | null\n backgroundGradientType?: QrCodeGradientTypes | null\n cornerDotColor?: string | null\n cornerDotType?: QrCodeCornerDotTypes | null\n cornerSquareColor?: string | null\n cornerSquareType?: QrCodeCornerSquareTypes | null\n darkColor?: string | null\n dataUrl?: boolean | null\n dotType?: QrCodeDotTypes | null\n errorCorrectionLevel?: QrCodeErrorCorrectionLevel | null\n foreground?: string | null\n foregroundGradientColors?: string | null\n foregroundGradientRotation?: number | null\n foregroundGradientType?: QrCodeGradientTypes | null\n format?: QrCodeType | null\n lightColor?: string | null\n logo?: string | null\n logoMargin?: number | null\n margin?: number | null\n qrCodeLogoId?: string | null\n saveAsBlob?: boolean | null\n scale?: number | null\n version?: number | null\n width?: number | null\n}\n\nexport interface QrCodeLink {\n created?: string | Date | number | null\n modified?: string | Date | number | null\n qrCodeId: string\n qrCodeLink: string\n}\n\nexport interface QrCodeLocator {\n created?: string | Date | number | null\n locatorKey: string\n modified?: string | Date | number | null\n qrCodeId: string\n}\n\nexport interface QrCodeLogo {\n accountId: string\n appAccountId?: string | null\n cacheControl?: boolean | null\n contentDisposition?: string | null\n contentType: string\n created?: string | Date | number | null\n createdBy: string\n expiresAt?: string | Date | number | null\n extension: string\n fileId?: string\n fileName?: string | null\n fileNameBase?: string\n fileType?: string | null\n from?: string | null\n hidden?: boolean\n lastModifiedBy?: string | null\n length?: number | null\n modified?: string | Date | number | null\n qrCodeLogoId?: string\n rangeTimestamp?: string | null\n state?: string\n to?: string | null\n url: string\n}\n\nexport interface QrCodeStylingTemplate {\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n createdBy: string\n hidden?: boolean | null\n imageOptions?: QrCodeImageOptions\n lastModifiedBy: string\n modified?: string | Date | number | null\n name: string\n projectId?: string | null\n qrCodeLogo?: QrCodeLogo | null\n stylingTemplateId: string\n}\n\nexport interface RequestApp {\n appDetailMedia?: string[] | null\n appName: string\n appPrice: number\n appStoreThumbnail?: string | null\n appWebhook?: string | null\n bannerImage?: string | null\n cardImage?: string | null\n categories?: Array<any> | null\n created?: string | Date | number | null\n description?: string | null\n featured: boolean\n features?: string | null\n heroImage?: string | null\n isPublished: boolean\n keywords?: Array<any> | null\n logo?: string | null\n modified?: string | Date | number | null\n pricePlanPoints?: Array<any> | null\n tagline?: string | null\n uiUrl: string\n website?: string | null\n}\n\nexport interface RequestSessionAction {\n actionId?: string | null\n actionType?: string | null\n category?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n name?: string | null\n scanId?: string | null\n tags?: Array<any> | null\n timestamp?: string | Date | number | null\n willUpdateSession?: boolean\n}\n\nexport interface ReservedMappedQrLocatorKey {\n _prefix?: string\n created?: string | Date | number | null\n customDomain: string\n isSingle?: boolean\n isStart: boolean\n locatorKeyNumber: number\n modified?: string | Date | number | null\n pairLocatorKeyNumber: number\n prefix: string\n}\n\nexport interface ResponseAccountPlugin {\n accountId: string\n appAccountId?: string | null\n icon: string\n isEnabled?: boolean\n name: string\n pluginConfig?: NestedKeyValueObject\n pluginId: string\n}\n\nexport interface ResponseAsset {\n appAccountId?: string | null\n appId?: string | null\n assetId: string\n assetTypeId?: string | null\n assetTypeName?: string | null\n batchId?: string | null\n category?: string | null\n childAssets?: NestedKeyValueObject | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n customDomain?: string | null\n description?: string | null\n dynamicQrCodeCount: number\n isValidChildAssets?: boolean | null\n isValidCustomAttributes?: boolean | null\n lastGeolocationScanTime?: string | Date | number | null\n lastScan?: LastScan | null\n lastScanGeolocationCoordinates?: string | null\n lastScanId?: string | null\n lastScanLocationCoordinates?: string | null\n lastScanTime?: string | Date | number | null\n locationId?: string | null\n mediaIds?: Array<any>\n modified?: string | Date | number | null\n name: string\n parentAssetId?: string | null\n projectId: string\n projectName?: string | null\n qrCodes?: ResponseQrCode[] | null\n scanCount: number\n state?: string | null\n staticQrCodeCount: number\n thumbnails?: Array<any> | null\n userMedias?: UserMedia[] | null\n willCreateSession?: boolean | null\n}\n\nexport interface ResponseAssetGraph extends AssetGraph {\n accountId: string\n appAccountId?: string | null\n assetGraphId: string\n created?: string | Date | number | null\n direction?: string\n edges?: AssetGraphEdge[] | null\n modified?: string | Date | number | null\n name: string\n nodes: ResponseAssetGraphNode[]\n projectId: string\n}\n\nexport interface ResponseAssetGraphNode extends AssetGraphNode {\n assetId: string\n name?: string | null\n}\n\nexport interface ResponseBodyUser {\n created: string | Date | number\n email: string\n expiresAt?: string | Date | number | null\n firstName: string\n invitationId?: string | null\n lastName: string\n middleName: string\n userId?: string | null\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface ResponseQrCode {\n appAccountId?: string | null\n appId?: string | null\n assetId: string\n created?: string | Date | number | null\n customDomain?: string | null\n dynamicRedirectType?: QrCodeDynamicRedirectType\n image: QrCodeImage\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n intentType?: QrCodeIntentType\n isAskingForGPS?: boolean | null\n locatorKey: string\n locatorKeyType?: QrCodeLocatorKeyType\n modified?: string | Date | number | null\n name?: string | null\n projectId?: string | null\n qrCodeId: string\n qrCodeLinks?: Array<any> | null\n scanCount: number\n serializedLocatorKey?: string | null\n status?: QrCodeStatus\n stylingTemplateId?: string | null\n validFrom?: string | Date | number | null\n validTo?: string | Date | number | null\n}\n\nexport interface ResponseSession {\n accountId?: string | null\n appAccountId?: string | null\n assetId?: string | null\n category?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n endTime?: string | Date | number | null\n lastActionId?: string | Date | number | null\n lastScanId?: string | null\n lastSessionAction?: SessionAction | null\n modified?: string | Date | number | null\n newTags?: Array<any> | null\n projectId?: string | null\n qrCodeId?: string | null\n sessionActions?: SessionAction[] | null\n sessionId?: string | null\n tagCounter?: number | null\n tags?: Array<any> | null\n}\n\nexport interface Scan {\n assetId: string\n assetName: string\n browserName?: string | null\n browserVersion?: string | null\n cpuArchitecture?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n deviceModel?: string | null\n deviceType?: string | null\n deviceVendor?: string | null\n engineName?: string | null\n engineVersion?: string | null\n geolocationCityName?: string | null\n geolocationCountryCode?: string | null\n geolocationCountryName?: string | null\n geolocationLatitude?: string | null\n geolocationLongitude?: string | null\n geolocationPostalCode?: string | null\n geolocationRegionCode?: string | null\n geolocationRegionName?: string | null\n ipAddress?: string | null\n locationCityName?: string | null\n locationCountryCode?: string | null\n locationCountryName?: string | null\n locationLatitude?: string | null\n locationLongitude?: string | null\n locationPostalCode?: string | null\n locationRegionCode?: string | null\n locationRegionName?: string | null\n locationTimeZone?: string | null\n modified?: string | Date | number | null\n osName?: string | null\n osVersion?: string | null\n projectId: string\n qrCodeId?: string | null\n scanId: string\n scanTime: string | Date | number\n sessionId?: string | null\n userAgent?: string | null\n}\n\nexport interface ScanContact {\n assetId: string\n assetName: string\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n scanId: string\n}\n\nexport interface SessionAction {\n accountId: string\n actionId: string\n actionType?: string | null\n appAccountId?: string | null\n assetId: string\n category?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n name?: string | null\n projectId: string\n qrCodeId: string\n scanId?: string | null\n sessionId: string\n tags?: Array<any> | null\n}\n\nexport interface SessionActionByActionType {\n _prefix?: string\n accountId: string\n actionId: string\n actionType?: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId?: string | null\n sessionId: string\n timestamp: string | Date | number\n}\n\nexport interface SessionActionByCategory {\n _prefix?: string\n accountId: string\n actionId: string\n appAccountId?: string | null\n assetId?: string | null\n category?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId?: string | null\n sessionId: string\n timestamp: string | Date | number\n}\n\nexport interface SessionActionByName {\n _prefix?: string\n accountId: string\n actionId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n name?: string\n projectId: string\n qrCodeId?: string | null\n sessionId: string\n timestamp: string | Date | number\n}\n\nexport interface SessionActionByTimestamp {\n _prefix?: string\n accountId: string\n actionId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId?: string | null\n sessionId: string\n timestamp: string | Date | number\n}\n\nexport interface Sms {\n body: string\n contactId: string\n created?: string | Date | number | null\n delivered?: boolean | null\n deliveredAt?: string | Date | number | null\n from: string\n inbound: boolean\n modified?: string | Date | number | null\n price?: number | null\n priceUnit: string\n projectId: string\n responses?: SmsResponse[] | null\n smsId: string\n smsTemplateName?: string | null\n status?: string | null\n to: string\n}\n\nexport interface SmsCampaignRequest {\n businessCity: string\n businessContactEmail: string\n businessContactFirstName: string\n businessContactLastName: string\n businessContactPhone: string\n businessCountry?: string\n businessName: string\n businessPostalCode: string\n businessStateProvinceRegion: string\n businessStreetAddress2?: string | null\n businessStreetAddress: string\n businessWebsite: string\n messageVolume?: string\n productionMessageSample: string\n useCaseCategories: CampaignUseCaseCategory\n useCaseSummary: string\n}\n\nexport interface SmsResponse {\n body: string\n contactPhone: string\n smsId: string\n twilioPhone: string\n}\n\nexport interface SmsTemplate {\n body?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n responseUrl?: string | null\n smsTemplateName: string\n statusUrl?: string | null\n}\n\nexport interface StepScheduler {\n accountId: string\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n modified?: string | Date | number | null\n retryCount: number\n secondsInterval: number\n stepSchedulerId: string\n targetEntityType: string\n targetPkSk: string\n}\n\nexport interface TagCreationAccount {\n _GLOBAL?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n productLine: string\n}\n\nexport interface TagType {\n accountId: string\n commonProperties?: NestedKeyValueObject | null\n created?: string | Date | number | null\n imageOptions?: QrCodeImageOptions | null\n incrementor?: Array<any>\n intent: string\n isAskingForGPS?: boolean\n isUsingPrefixValues?: boolean\n leadingCharacter: string\n modified?: string | Date | number | null\n name: string\n packSize: number\n prefixValues?: Array<any>\n printOptions: NestedKeyValueObject\n startingState?: TagStates\n stylingTemplateId?: string | null\n tagTypeId: string\n}\n\nexport interface TagTypeByLeadingChar {\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n leadingCharacter: string\n modified?: string | Date | number | null\n tagTypeId: string\n timestamp: string | Date | number\n}\n\nexport interface TagTypeByName {\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n name: string\n tagTypeId: string\n}\n\nexport interface TemporaryCode {\n accountId?: string | null\n appAccountId?: string | null\n codeId: string\n codeType?: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n expires?: string | Date | number | null\n expiresAt?: string | Date | number | null\n modified?: string | Date | number | null\n phoneCode?: string | null\n phoneNumber?: string | null\n status?: string\n}\n\nexport interface URLSafety {\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n isBlacklisted?: boolean\n isThreat?: boolean\n modified?: string | Date | number | null\n threatTypes?: Array<any> | null\n timesChecked: number\n url: string\n}\n\nexport interface URLSafetyByCreated {\n _GLOBAL: string\n _created: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n}\n\nexport interface URLSafetyByModified {\n _GLOBAL: string\n _modified: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n}\n\nexport interface URLSafetyByTimesChecked {\n _GLOBAL: string\n _modified: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timesChecked: number\n url: string\n}\n\nexport interface URLSafetyByUrl {\n _GLOBAL: string\n _modified: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n}\n\nexport interface User {\n created?: string | Date | number | null\n email: string\n firstName: string\n lastName: string\n middleName: string\n modified?: string | Date | number | null\n ssoIdentity?: NestedKeyValueObject | null\n userId: string\n}\n\nexport interface UserByEmail {\n _GLOBAL: string\n _prefix?: string\n created?: string | Date | number | null\n email: string\n modified?: string | Date | number | null\n userId: string\n}\n\nexport interface UserByTimestamp {\n _GLOBAL: string\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n userId: string\n}\n\nexport interface UserMedia {\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n cacheControl?: boolean | null\n category?: string | null\n containsVirus?: boolean | null\n contentDisposition?: string | null\n contentType: string\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n extension: string\n fileId?: string\n fileName?: string | null\n fileNameBase?: string\n fileType: string\n from?: string | null\n hidden?: boolean | null\n lastScannedAt?: string | Date | number | null\n length?: number | null\n mediaId?: string\n modified?: string | Date | number | null\n name?: string | null\n projectId?: string | null\n rangeTimestamp?: string | null\n scanId?: string | null\n size?: number | null\n state?: string\n to?: string | null\n url?: string | null\n}\n\nexport interface UserMediaByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n mediaId: string\n modified?: string | Date | number | null\n name?: string\n projectId?: string | null\n scanId?: string | null\n timestamp: string | Date | number\n}\n\nexport interface UserMediaByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n mediaId: string\n modified?: string | Date | number | null\n projectId?: string | null\n scanId?: string | null\n timestamp: string | Date | number\n}\n\nexport interface UserMediaByTypeName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n fileType: string\n mediaId: string\n modified?: string | Date | number | null\n name?: string\n projectId?: string | null\n scanId?: string | null\n timestamp: string | Date | number\n}\n\nexport interface UserMediaByTypeTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n fileType?: string\n mediaId: string\n modified?: string | Date | number | null\n projectId?: string | null\n scanId?: string | null\n timestamp: string | Date | number\n}\n\nexport interface UserRole {\n _GLOBAL: string\n created?: string | Date | number | null\n isApiKey?: boolean\n modified?: string | Date | number | null\n name: string\n permissions?: Permission\n roleId: string\n}\n\nexport interface UserSessionResponseBody {\n expires: string | Date | number\n scope: AuthTokenScope\n user?: User | null\n userId: string\n}\n\nexport interface UserSettings {\n created?: string | Date | number | null\n lastSelectedAccountId?: string | null\n modified?: string | Date | number | null\n path: UserSettingsDomain\n userId: string\n}\n\nexport interface WebSession {\n accountId: string\n appAccountId?: string | null\n assetId: string\n category?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n endTime?: string | Date | number | null\n lastActionId?: string | Date | number | null\n lastScanId?: string | null\n modified?: string | Date | number | null\n newTags?: Array<any> | null\n projectId: string\n qrCodeId: string\n sessionId: string\n tagCounter: number\n tags?: Array<any> | null\n}\n\nexport interface WebSessionByCategory {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n category?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId?: string | null\n sessionId: string\n timestamp: string | Date | number\n}\n\nexport interface WebSessionByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId?: string | null\n sessionId: string\n timestamp: string | Date | number\n}\n\nexport interface S3Object {\n accountId: string\n cacheControl?: boolean | null\n contentDisposition?: string | null\n contentType: string\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n extension: string\n fileId?: string\n fileName?: string | null\n fileNameBase?: string\n fileType?: string | null\n from?: string | null\n length?: number | null\n modified?: string | Date | number | null\n rangeTimestamp?: string | null\n state?: string\n to?: string | null\n url: string\n}\n\nexport interface S3Storage {\n bucket: string\n domain: string\n internalDomain: string\n partition: string\n}\n\nexport interface S3Image {\n accountId: string\n appAccountId?: string | null\n cacheControl?: boolean | null\n contentDisposition?: string | null\n contentType: string\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n extension: string\n fileId?: string\n fileName?: string | null\n fileNameBase?: string\n fileType?: string | null\n from?: string | null\n imageId?: string\n internalUrl: string\n length?: number | null\n modified?: string | Date | number | null\n rangeTimestamp?: string | null\n s3Key: string\n state?: string\n to?: string | null\n url: string\n}\n\n// HANDLER INTERFACE TYPES\n\nexport interface GetApiKeyPathParameters {\n apiKeyId: string\n}\n\nexport interface GetApiKeyResponseBody {\n apiKeyId: string\n description?: string | null\n key: string\n name: string\n status: string\n}\n\nexport interface UpdateApiKeyPathParameters {\n apiKeyId: string\n}\n\nexport interface UpdateApiKeyRequestBody {\n description?: string | null\n name?: string | null\n}\n\nexport interface UpdateApiKeyResponseBody {\n apiKeyId: string\n description?: string | null\n key: string\n name: string\n status: string\n}\n\nexport interface GetAppByAppIdPathParameters {\n appId: string\n}\n\nexport interface GetAppByAppIdResponseBody {\n app: App\n}\n\nexport interface GetAppsQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n nameSearch?: string | null\n}\n\nexport interface GetAppsResponseBody {\n apps: App[]\n}\n\nexport interface GetPublishedAppsQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n nameSearch?: string | null\n}\n\nexport interface GetPublishedAppsResponseBody {\n apps: App[]\n}\n\nexport interface LoadAppPathParameters {\n accountId: string\n appId: string\n}\n\nexport interface LoadAppResponseBody {\n app: App\n expires: string | Date | number\n sessionToken: string\n}\n\nexport interface ResetApiKeySecretPathParameters {\n apiKeyId: string\n}\n\nexport interface ResetApiKeySecretResponseBody {\n apiKeyId: string\n secret: string\n}\n\nexport interface UpdateAppByAppIdPathParameters {\n appId: string\n}\n\nexport interface UpdateAppByAppIdRequestBody {\n app: PatchApp\n}\n\nexport interface UpdateAppByAppIdResponseBody {\n app: App\n}\n\nexport interface CreateAppByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateAppByAccountIdRequestBody {\n app: RequestApp\n}\n\nexport interface CreateAppByAccountIdResponseBody {\n app: App\n}\n\nexport interface CreateApiKeyByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateApiKeyByAccountIdRequestBody {\n description?: string | null\n name?: string | null\n}\n\nexport interface CreateApiKeyByAccountIdResponseBody {\n apiKeyId: string\n description?: string | null\n key: string\n name: string\n secret: string\n status: string\n}\n\nexport interface CreateAssetTypeByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateAssetTypeByAccountIdRequestBody {\n category?: string | null\n childItems?: NestedKeyValueObject | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n instanceProperties?: NestedKeyValueObject | null\n intent?: string | null\n name: string\n staticProperties?: NestedKeyValueObject | null\n usabilityState?: AssetTypeUsabilityState | null\n}\n\nexport interface CreateAssetTypeByAccountIdResponseBody {\n accountId: string\n assetType: AssetType\n}\n\nexport interface CreateImageUploadPresignedPathParameters {\n accountId: string\n}\n\nexport interface CreateImageUploadPresignedRequestBody {\n imageContentType: string\n}\n\nexport interface CreateImageUploadPresignedResponseBody {\n image: S3Image\n presignedUrl: string\n}\n\nexport interface CheckUrlSafetyByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CheckUrlSafetyByAccountIdRequestBody {\n ignoreBlackList?: boolean\n qrCodeId?: string | null\n urls: Array<any>\n}\n\nexport interface CheckUrlSafetyByAccountIdResponseBody {\n isSafe: boolean\n urlSafeties: URLSafety[]\n}\n\nexport interface CreateInvitationByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateInvitationByAccountIdRequestBody extends AccountInvitationRequestBody {\n email: string\n firstName: string\n lastName: string\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface CreateInvitationByAccountIdResponseBody {\n accountInvitation: AccountInvitation\n emailInvitation: EmailInvitation\n}\n\nexport interface GetApiKeySecretPathParameters {\n apiKeyId: string\n}\n\nexport interface GetApiKeySecretResponseBody {\n apiKeyId: string\n secret?: string | null\n}\n\nexport interface CreatePrintPageTemplateByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreatePrintPageTemplateByAccountIdRequestBody {\n created?: string | Date | number | null\n format?: PrintFormat | null\n horizontalMargin: number\n horizontalPadding: number\n isDeleted?: boolean | null\n modified?: string | Date | number | null\n name: string\n numberOfColumns: number\n numberOfRows: number\n orientation?: PrintOrientation | null\n pageSize: Array<any>\n printMode?: PrintMode | null\n printTemplate?: PrintTemplate | null\n stickerShape: StickerShape\n stickerSize: Array<any>\n unit?: PrintUnit\n verticalMargin: number\n verticalPadding: number\n}\n\nexport interface CreatePrintPageTemplateByAccountIdResponseBody {\n printPageTemplate: PrintPageTemplate\n}\n\nexport interface CreateQrCodeStylingTemplateByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateQrCodeStylingTemplateByAccountIdRequestBody {\n imageOptions?: QrCodeImageOptions\n name: string\n projectId?: string | null\n}\n\nexport interface CreateQrCodeStylingTemplateByAccountIdResponseBody {\n accountId: string\n qrCodeStylingTemplate: QrCodeStylingTemplate\n}\n\nexport interface CreateUserMediaMultipartPresignedUrlByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateUserMediaMultipartPresignedUrlByAccountIdRequestBody {\n assetId?: string | null\n category?: string | null\n fileType: UserMediaFileTypes\n name?: string | null\n parts: number\n projectId?: string | null\n scanId?: string | null\n subFolder?: string | null\n}\n\nexport interface CreateUserMediaMultipartPresignedUrlByAccountIdResponseBody {\n presignedUrls: Array<any>\n uploadId: string\n userMedia: UserMedia\n}\n\nexport interface CreatePrintStickerTemplateByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreatePrintStickerTemplateByAccountIdRequestBody {\n bleed?: boolean | null\n name: string\n previewImage: string\n serializedFabric: NestedKeyValueObject\n stickerShape: StickerShape\n stickerSize: Array<any>\n unit?: PrintUnit\n}\n\nexport interface CreatePrintStickerTemplateByAccountIdResponseBody {\n printStickerTemplate: PrintStickerTemplate\n}\n\nexport interface CheckAccountAccessPathParameters {\n accountId: string\n userId: string\n}\n\nexport interface CheckAccountAccessResponseBody {\n userRole: string\n}\n\nexport interface CreateQueryableCustomAttributeByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateQueryableCustomAttributeByAccountIdRequestBody {\n customAttributeName: string\n fieldType: FieldType\n}\n\nexport interface CreateQueryableCustomAttributeByAccountIdResponseBody {\n customAttribute: CustomAttribute\n}\n\nexport interface CreateUserMediaPresignedUrlByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateUserMediaPresignedUrlByAccountIdRequestBody {\n allowExpiry?: boolean\n assetId?: string | null\n category?: string | null\n fileType: UserMediaFileTypes\n name?: string | null\n projectId?: string | null\n scanId?: string | null\n subFolder?: string | null\n}\n\nexport interface CreateUserMediaPresignedUrlByAccountIdResponseBody {\n presignedUrl: string\n userMedia: UserMedia\n}\n\nexport interface CreateTicketByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateTicketByAccountIdRequestBody {\n category?: string\n impact?: string\n message: string\n subject?: string\n}\n\nexport interface DeleteContactsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface DeleteContactsByAccountIdQueryStringParameters {\n cellPhone?: string | null\n emailAddress?: string | null\n}\n\nexport interface DeleteContactsByAccountIdResponseBody {\n accountId: string\n contacts: Contact[]\n}\n\nexport interface CreateProjectByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateProjectByAccountIdRequestBody {\n companyName?: string | null\n customDomain?: string | null\n description?: string | null\n micrositeCustomDomain?: string | null\n name: string\n workflowCustomDomain?: string | null\n}\n\nexport interface CreateProjectByAccountIdResponseBody {\n accountId: string\n project: Project\n}\n\nexport interface GetAccountPathParameters {\n accountId: string\n}\n\nexport interface GetAccountResponseBody extends Account {\n accountId: string\n accountStatus?: AccountStatus\n assetCount: number\n campaignStatus?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n currentPeriod: PricePlanPeriod\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n pricePlan: PricePlan\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface DeleteUserByAccountIdPathParameters {\n accountId: string\n userId: string\n}\n\nexport interface GetAccountDomainPathParameters {\n accountId: string\n customDomain: string\n}\n\nexport interface GetAccountDomainResponseBody {\n accountDomain: AccountDomain\n}\n\nexport interface CreateLocationByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateLocationByAccountIdRequestBody {\n address?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n name: string\n state?: string | null\n}\n\nexport interface CreateLocationByAccountIdResponseBody {\n accountId: string\n location: Location\n}\n\nexport interface GetAdvancedAssetReportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAdvancedAssetReportByAccountIdQueryStringParameters {\n limit?: number | null\n nextToken?: string | null\n queryExecutionId?: string | null\n search?: string | null\n}\n\nexport interface GetAdvancedAssetReportByAccountIdResponseBody {\n data: Array<any>\n meta: NestedKeyValueObject\n}\n\nexport interface GetAllAppsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAllAppsByAccountIdQueryStringParameters {\n appName?: string | null\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetAllAppsByAccountIdResponseBody {\n apps: App[]\n}\n\nexport interface CreateInvitationsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateInvitationsByAccountIdRequestBody {\n users: AccountInvitationRequestBody[]\n}\n\nexport interface CreateInvitationsByAccountIdResponseBody {\n accountInvitations: AccountInvitation[]\n emailInvitations: EmailInvitation[]\n}\n\nexport interface GetAdvancedScanReportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAdvancedScanReportByAccountIdQueryStringParameters {\n displayMostRecentPerAsset?: boolean\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetAdvancedScanReportByAccountIdResponseBody {\n dynamicQRCodesTotal: number\n lastScan?: LastScan | null\n projectsTotal: number\n scansByDevice: NestedKeyValueObject\n scansByGeolocation: NestedKeyValueObject\n scansByLocation: NestedKeyValueObject\n scansTotal: number\n staticQRCodesTotal: number\n}\n\nexport interface GetApiKeysByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetApiKeysByAccountIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetApiKeysByAccountIdResponseBody {\n accountId: string\n apiKeys: ApiKeyCredentials[]\n lastKey?: string | null\n numberOfApiKeys: number\n}\n\nexport interface GetAdvancedContactReportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAdvancedContactReportByAccountIdQueryStringParameters {\n limit?: number | null\n nextToken?: string | null\n queryExecutionId?: string | null\n search?: string | null\n}\n\nexport interface GetAdvancedContactReportByAccountIdResponseBody {\n data: Array<any>\n meta: NestedKeyValueObject\n}\n\nexport interface CreateQrCodeLogoByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateQrCodeLogoByAccountIdRequestBody {\n logoContentType: string\n}\n\nexport interface CreateQrCodeLogoByAccountIdResponseBody {\n presignedUrl: string\n qrCodeLogo: QrCodeLogo\n}\n\nexport interface GetAssetExportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAssetExportByAccountIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetAssetExportByAccountIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface GetAssetGraphsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAssetGraphsByAccountIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n projectId?: string | null\n}\n\nexport interface GetAssetGraphsByAccountIdResponseBody {\n assetGraphs: AssetGraph[]\n lastKey?: string | null\n}\n\nexport interface GetAssetsScanCountByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAssetsScanCountByAccountIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetAssetsScanCountByAccountIdRequestBody {\n assetIds: Array<any>\n}\n\nexport interface GetAssetsScanCountByAccountIdResponseBody {\n scanCount: NestedKeyValueObject\n}\n\nexport interface GetAssetTypesByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAssetTypesByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n locationId?: string | null\n name?: string | null\n sortField?: AssetTypeSortingTypes | null\n usabilityState?: AssetTypeUsabilityState | null\n}\n\nexport interface GetAssetTypesByAccountIdResponseBody {\n accountId: string\n assetTypes: AssetType[]\n assetTypesByLocation?: AssetTypeByLocation[] | null\n lastKey?: string | null\n numberOfAssetTypes: number\n}\n\nexport interface GetBasicContactReportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetBasicContactReportByAccountIdResponseBody {\n contactsCount: number\n}\n\nexport interface GetBatchesByAccountIdPathParameters {\n projectId: string\n}\n\nexport interface GetBatchesByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetBatchesByAccountIdResponseBody {\n batch: Batch\n lastKey?: string | null\n}\n\nexport interface GetConsentByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetConsentByAccountIdQueryStringParameters {\n consentStatus?: ConsentStatus\n consentType: ConsentType\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetConsentByAccountIdResponseBody {\n accountId: string\n consent: ContactConsent[]\n lastKey?: string | null\n}\n\nexport interface GetBasicAssetReportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetBasicAssetReportByAccountIdResponseBody {\n assetsCount: number\n}\n\nexport interface GetDomainsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetDomainsByAccountIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n type?: AccountDomainTypes | null\n}\n\nexport interface GetDomainsByAccountIdResponseBody {\n accountDomains: AccountDomain[]\n lastKey?: string | null\n}\n\nexport interface GetContactExportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetContactExportByAccountIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetContactExportByAccountIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface GetAssetsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAssetsByAccountIdQueryStringParameters {\n ascending?: boolean | null\n assetTypeName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n includeThumbnails?: boolean\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n queryCondition?: QueryConditions | null\n sortField?: AssetSortingTypes | null\n state?: string | null\n thumbnailMargin?: number | null\n thumbnailWidth?: number | null\n}\n\nexport interface GetAssetsByAccountIdResponseBody {\n accountId: string\n assets: Asset[]\n lastKey?: string | null\n numberOfAssets: number\n}\n\nexport interface GetInstalledAppsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetInstalledAppsByAccountIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetInstalledAppsByAccountIdResponseBody {\n installedApps: AppBasicDetails[]\n}\n\nexport interface GetMostScannedAssetsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetMostScannedAssetsByAccountIdQueryStringParameters {\n from?: string | Date | number | null\n limit?: number | null\n to?: string | Date | number | null\n}\n\nexport interface GetMostScannedAssetsByAccountIdResponseBody {\n mostScannedAssets: Array<any>\n}\n\nexport interface GetPluginsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetPluginsByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfPlugins: number\n plugins: ResponseAccountPlugin[]\n}\n\nexport interface GetJobsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetJobsByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetJobsByAccountIdResponseBody {\n jobs: Job[]\n lastKey?: string | null\n}\n\nexport interface GetPricePlanByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetPricePlanByAccountIdResponseBody {\n pricePlan: PricePlan\n pricePlanPeriod: PricePlanPeriod\n}\n\nexport interface GetLocationsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetLocationsByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n sortField?: LocationSortingTypes | null\n state?: string | null\n}\n\nexport interface GetLocationsByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n locations: Location[]\n numberOfLocations: number\n}\n\nexport interface GetPrintJobsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetPrintJobsByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n printJobName?: string | null\n}\n\nexport interface GetPrintJobsByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfPrintJobs: number\n printJobs: PrintJob[]\n}\n\nexport interface GetPrintPageTemplatesByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetPrintPageTemplatesByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n}\n\nexport interface GetPrintPageTemplatesByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfPrintPageTemplates: number\n printPageTemplates: PrintPageTemplate[]\n}\n\nexport interface GetProjectExportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetProjectExportByAccountIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetProjectExportByAccountIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface GetProjectsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetProjectsByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n sortField?: ProjectSortingTypes | null\n}\n\nexport interface GetProjectsByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfProjects: number\n projects: Project[]\n}\n\nexport interface GetPrintStickerTemplatesByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetPrintStickerTemplatesByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n}\n\nexport interface GetPrintStickerTemplatesByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfPrintStickerTemplates: number\n printStickerTemplates: PrintStickerTemplate[]\n}\n\nexport interface GetQrCodeStylingTemplatesByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetQrCodeStylingTemplatesByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n stylingTemplateName?: string | null\n}\n\nexport interface GetQrCodeStylingTemplatesByAccountIdResponseBody {\n accountId: string\n numberOfQrCodeStylingTemplates: number\n qrCodeStylingTemplates: QrCodeStylingTemplate[]\n}\n\nexport interface GetScanDayOfWeekByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetScanDayOfWeekByAccountIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanDayOfWeekByAccountIdResponseBody {\n data: NestedKeyValueObject\n}\n\nexport interface GetQueryableCustomAttributesByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetQueryableCustomAttributesByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetQueryableCustomAttributesByAccountIdResponseBody {\n customAttributes: CustomAttribute[]\n}\n\nexport interface GetScanExportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetScanExportByAccountIdRequestBody {\n colMap?: NestedKeyValueObject | null\n email?: string | null\n format?: string\n from?: string | Date | number | null\n projectId?: string | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanExportByAccountIdResponseBody {\n fileName?: string | null\n job: Job\n}\n\nexport interface GetQrCodeLogosByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetQrCodeLogosByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetQrCodeLogosByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfQrCodeLogos: number\n qrCodeLogos: QrCodeLogo[]\n}\n\nexport interface GetScanTimeOfDayByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetScanTimeOfDayByAccountIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanTimeOfDayByAccountIdResponseBody {\n data: NestedKeyValueObject\n}\n\nexport interface GetQrCodesByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetQrCodesByAccountIdQueryStringParameters {\n ascending?: boolean | null\n assetName?: string | null\n lastKey?: string | null\n limit?: number | null\n sortField?: QrCodeSortingTypes | null\n willGetLogoIds?: boolean | null\n}\n\nexport interface GetQrCodesByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfQrCodes: number\n qrCodes: QrCode[]\n}\n\nexport interface GetScanTimelineByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetScanTimelineByAccountIdQueryStringParameters {\n from: string | Date | number\n to?: string | Date | number | null\n type: ScanTimelineOptions\n}\n\nexport interface GetScanTimelineByAccountIdResponseBody {\n data: NestedKeyValueObject\n}\n\nexport interface GetScansByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetScansByAccountIdQueryStringParameters {\n ascending?: boolean | null\n assetName?: string | null\n contactId?: string | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetScansByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfScans: number\n scans: Scan[]\n}\n\nexport interface GetUserMediasByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetUserMediasByAccountIdQueryStringParameters {\n ascending?: boolean | null\n category?: string | null\n fileType?: string | null\n lastKey?: string | null\n limit?: number | null\n mediaIds?: string | null\n name?: string | null\n sortField?: UserMediaSortingTypes | null\n}\n\nexport interface GetUserMediasByAccountIdResponseBody {\n lastKey?: string | null\n userMedias: UserMedia[]\n}\n\nexport interface GetUsersByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetUsersByAccountIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n}\n\nexport interface GetUsersByAccountIdResponseBody {\n accountId: string\n invitations: ResponseBodyUser[]\n lastKey?: string | null\n numberOfInvitations: number\n numberOfUsers: number\n users: ResponseBodyUser[]\n}\n\nexport interface GetContactsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetContactsByAccountIdQueryStringParameters {\n ascending?: boolean | null\n assetName?: string | null\n contactName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n email?: string | null\n lastKey?: string | null\n limit?: number | null\n phone?: string | null\n queryCondition?: QueryConditions | null\n sortField?: ContactSortingTypes | null\n}\n\nexport interface GetContactsByAccountIdResponseBody {\n accountId: string\n contacts: Contact[]\n lastKey?: string | null\n numberOfContacts: number\n}\n\nexport interface SendCampaignInformationByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface SendCampaignInformationByAccountIdRequestBody {\n campaignInfo: SmsCampaignRequest\n}\n\nexport interface SendCampaignInformationByAccountIdResponseBody {\n account: Account\n accountSmsCampaign: AccountSmsCampaign\n}\n\nexport interface InstallAppToAccountPathParameters {\n accountId: string\n appId: string\n}\n\nexport interface InstallAppToAccountResponseBody {\n appAccount: AppAccount\n}\n\nexport interface UpdateAccountPathParameters {\n accountId: string\n}\n\nexport interface UpdateAccountRequestBody {\n companyName?: string | null\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n}\n\nexport interface UpdateAccountResponseBody extends Account {\n accountId: string\n accountStatus?: AccountStatus\n assetCount: number\n campaignStatus?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface RetrieveCampaignStatusByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface RetrieveCampaignStatusByAccountIdResponseBody {\n accountSmsCampaign: AccountSmsCampaign\n}\n\nexport interface StripeClockPathParameters {\n accountId: string\n}\n\nexport interface StripeClockRequestBody {\n customDate?: string | null\n shortcuts?: string | null\n}\n\nexport interface StripeClockResponseBody {\n message: string\n}\n\nexport interface UpdatePricePlanPathParameters {\n accountId: string\n}\n\nexport interface UpdatePricePlanRequestBody {\n planName: string\n}\n\nexport interface UpdatePricePlanResponseBody {\n}\n\nexport interface GetUserByAccountIdPathParameters {\n accountId: string\n userId: string\n}\n\nexport interface GetUserByAccountIdResponseBody extends ResponseBodyUser {\n created: string | Date | number\n email: string\n expiresAt?: string | Date | number | null\n firstName: string\n invitationId?: string | null\n lastName: string\n middleName: string\n userId?: string | null\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface GetUsersRolesByAccountIdPathParameters {\n accountId: string\n userId: string\n}\n\nexport interface GetUsersRolesByAccountIdResponseBody {\n permissions: Permission\n userRoles: UserRole[]\n}\n\nexport interface UpdateUserByAccountIdPathParameters {\n accountId: string\n userId: string\n}\n\nexport interface UpdateUserByAccountIdRequestBody {\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface UpdateUserByAccountIdResponseBody {\n accountUser: AccountUser\n}\n\nexport interface UpdatePricePlanByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface UpdatePricePlanByAccountIdRequestBody {\n paymentPeriod: PricePlanPaymentPeriod\n pricePlanName: PricePlanName\n}\n\nexport interface UpdatePricePlanByAccountIdResponseBody {\n pricePlan: PricePlan\n pricePlanPeriod: PricePlanPeriod\n}\n\nexport interface UpdateUsersRolesByAccountIdPathParameters {\n accountId: string\n userId: string\n}\n\nexport interface UpdateUsersRolesByAccountIdRequestBody {\n userRoleIds: Array<any>\n}\n\nexport interface UpdateUsersRolesByAccountIdResponseBody {\n accountUser: AccountUser\n}\n\nexport interface UploadQrCodeLogoByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface UploadQrCodeLogoByAccountIdRequestBody {\n logo: string\n}\n\nexport interface UploadQrCodeLogoByAccountIdResponseBody {\n qrCodeLogoId: string\n qrCodeLogoUrl: string\n}\n\nexport interface ComposeAssetByAssetTypePathParameters {\n assetId: string\n assetTypeId: string\n}\n\nexport interface ComposeAssetByAssetTypeRequestBody {\n category: string\n childItems?: NestedKeyValueObject | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n instanceProperties?: NestedKeyValueObject | null\n locationId?: string | null\n name?: string | null\n staticProperties?: NestedKeyValueObject | null\n totalCount: number\n usabilityState?: AssetTypeUsabilityState | null\n}\n\nexport interface ComposeAssetByAssetTypeResponseBody {\n asset: Asset\n assetId: string\n}\n\nexport interface GetAppAccountPathParameters {\n appAccountId: string\n}\n\nexport interface GetAppAccountResponseBody extends AppAccount {\n appAccountId: string\n appId: string\n appName: string\n assetCount: number\n contactCount: number\n created?: string | Date | number | null\n dynamicQrCodeCount: number\n emailCount: number\n lastScanId?: string | null\n mainAccountId: string\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n userCount: number\n webSessionCount?: number | null\n}\n\nexport interface DeleteAssetTypePathParameters {\n assetTypeId: string\n}\n\nexport interface DeleteAssetTypeResponseBody {\n assetType: AssetType\n}\n\nexport interface GetAssetTypeCountAtLocationPathParameters {\n assetTypeId: string\n locationId: string\n}\n\nexport interface GetAssetTypeCountAtLocationResponseBody {\n assetTypeByLocation: AssetTypeByLocation\n}\n\nexport interface GetMainAccountByAppAccountIdPathParameters {\n appAccountId: string\n}\n\nexport interface GetMainAccountByAppAccountIdResponseBody extends Account {\n accountId: string\n accountStatus?: AccountStatus\n assetCount: number\n campaignStatus?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface GetAssetsByAssetTypePathParameters {\n assetTypeId: string\n}\n\nexport interface GetAssetsByAssetTypeQueryStringParameters {\n ascending?: boolean | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n includeThumbnails?: boolean\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n queryCondition?: QueryConditions | null\n sortField?: AssetByAssetTypeSortingTypes | null\n state?: string | null\n thumbnailMargin?: number | null\n thumbnailWidth?: number | null\n}\n\nexport interface GetAssetsByAssetTypeResponseBody {\n assetTypeId: string\n assets: Asset[]\n lastKey?: string | null\n numberOfAssets: number\n}\n\nexport interface CreateAssetByAssetTypePathParameters {\n assetTypeId: string\n}\n\nexport interface CreateAssetByAssetTypeRequestBody {\n asset: NestedTypedAsset\n projectId: string\n useCustomDomain?: boolean | null\n}\n\nexport interface CreateAssetByAssetTypeResponseBody {\n asset: ResponseAsset\n assetId: string\n assetType: AssetType\n}\n\nexport interface GetLocationCountsForAssetTypePathParameters {\n assetTypeId: string\n}\n\nexport interface GetLocationCountsForAssetTypeQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n sortField?: LocationSortingTypes | null\n state?: string | null\n}\n\nexport interface GetLocationCountsForAssetTypeResponseBody {\n assetType: AssetType\n assetTypesByLocation: AssetTypeByLocation[]\n count: number\n lastKey?: string | null\n}\n\nexport interface GetAssetTypeByAssetTypeIdPathParameters {\n assetTypeId: string\n}\n\nexport interface GetAssetTypeByAssetTypeIdQueryStringParameters {\n}\n\nexport interface GetAssetTypeByAssetTypeIdResponseBody {\n assetType: AssetType\n}\n\nexport interface UpdateAssetTypePathParameters {\n assetTypeId: string\n}\n\nexport interface UpdateAssetTypeRequestBody {\n category?: string | null\n childItems?: NestedKeyValueObject | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n instanceProperties?: NestedKeyValueObject | null\n intent?: string | null\n name?: string | null\n staticProperties?: NestedKeyValueObject | null\n usabilityState?: AssetTypeUsabilityState | null\n}\n\nexport interface UpdateAssetTypeResponseBody {\n assetType: AssetType\n assetTypeId: string\n}\n\nexport interface GetAssetsByBatchIdPathParameters {\n batchId: string\n}\n\nexport interface GetAssetsByBatchIdQueryStringParameters {\n ascending?: boolean | null\n assetTypeName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n includeThumbnails?: boolean\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n queryCondition?: QueryConditions | null\n sortField?: AssetSortingTypes | null\n state?: string | null\n thumbnailMargin?: number | null\n thumbnailWidth?: number | null\n}\n\nexport interface GetAssetsByBatchIdResponseBody {\n assets: Asset[]\n lastKey?: string | null\n numberOfAssets: number\n}\n\nexport interface UpdateAssetTypeCountAtLocationPathParameters {\n assetTypeId: string\n locationId: string\n}\n\nexport interface UpdateAssetTypeCountAtLocationRequestBody {\n count: number\n isDelta?: boolean\n}\n\nexport interface UpdateAssetTypeCountAtLocationResponseBody {\n assetType: AssetType\n assetTypeByLocation: AssetTypeByLocation\n}\n\nexport interface DeleteAssetGraphPathParameters {\n assetGraphId: string\n}\n\nexport interface GetAssetGraphPathParameters {\n assetGraphId: string\n}\n\nexport interface GetAssetGraphResponseBody {\n assetGraph: ResponseAssetGraph\n}\n\nexport interface UpdateAssetGraphPathParameters {\n assetGraphId: string\n}\n\nexport interface UpdateAssetGraphRequestBody {\n direction?: string\n edges: Array<any>\n name: string\n nodes: Array<any>\n}\n\nexport interface UpdateAssetGraphResponseBody {\n assetGraph: AssetGraph\n}\n\nexport interface CreateNeighborsByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface CreateNeighborsByAssetIdRequestBody {\n neighbors: Array<any>\n}\n\nexport interface CreateContactByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface CreateContactByAssetIdRequestBody {\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n firstName?: string | null\n lastName?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName?: string | null\n nickname?: string | null\n type?: string | null\n}\n\nexport interface CreateContactByAssetIdResponseBody {\n asset: Asset\n assetContact: AssetContact\n assetId: string\n contact: Contact\n projectContact: ProjectContact\n}\n\nexport interface GetAssetPathParameters {\n assetId: string\n}\n\nexport interface GetAssetQueryStringParameters {\n background?: string | null\n backgroundGradientColors?: string | null\n backgroundGradientRotation?: number | null\n backgroundGradientType?: QrCodeGradientTypes | null\n cornerDotColor?: string | null\n cornerDotType?: QrCodeCornerDotTypes | null\n cornerSquareColor?: string | null\n cornerSquareType?: QrCodeCornerSquareTypes | null\n darkColor?: string | null\n dataUrl?: boolean | null\n dotType?: QrCodeDotTypes | null\n errorCorrectionLevel?: QrCodeErrorCorrectionLevel | null\n foreground?: string | null\n foregroundGradientColors?: string | null\n foregroundGradientRotation?: number | null\n foregroundGradientType?: QrCodeGradientTypes | null\n format?: QrCodeType | null\n getUserMedias?: boolean\n lightColor?: string | null\n logo?: string | null\n logoMargin?: number | null\n margin?: number | null\n qrCodeLogoId?: string | null\n saveAsBlob?: boolean | null\n scale?: number | null\n stylingTemplateId?: string | null\n version?: number | null\n width?: number | null\n}\n\nexport interface GetAssetResponseBody {\n asset: ResponseAsset\n assetId: string\n}\n\nexport interface GetAssetHistoryByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetAssetHistoryByAssetIdQueryStringParameters {\n ascending?: boolean | null\n at?: string | Date | number | null\n from?: string | Date | number | null\n lastKey?: string | null\n limit?: number | null\n to?: string | Date | number | null\n}\n\nexport interface GetAssetHistoryByAssetIdResponseBody {\n assetId: string\n history: Asset[]\n lastKey?: string | null\n numberOfRecords: number\n}\n\nexport interface DeleteAssetPathParameters {\n assetId: string\n}\n\nexport interface DeleteAssetResponseBody {\n asset: Asset\n}\n\nexport interface GetContactsByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetContactsByAssetIdQueryStringParameters {\n ascending?: boolean | null\n contactName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n email?: string | null\n lastKey?: string | null\n limit?: number | null\n phone?: string | null\n queryCondition?: QueryConditions | null\n sortField?: ContactAssetSortingTypes | null\n}\n\nexport interface GetContactsByAssetIdResponseBody {\n assetContacts: AssetContact[]\n assetId: string\n contacts: Contact[]\n lastKey?: string | null\n numberOfContacts: number\n}\n\nexport interface DeleteNeighborsByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface DeleteNeighborsByAssetIdRequestBody {\n neighbors: Array<any>\n}\n\nexport interface GetExternalNeighborScanCountByAssetIdPathParameters {\n assetId: string\n url: string\n}\n\nexport interface GetExternalNeighborScanCountByAssetIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetExternalNeighborScanCountByAssetIdResponseBody {\n scanCount: number\n}\n\nexport interface GetNeighborsByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetNeighborsByAssetIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetNeighborsByAssetIdResponseBody {\n lastKey?: string | null\n neighbors: Array<any>\n}\n\nexport interface CreateQrCodeByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface CreateQrCodeByAssetIdRequestBody extends NestedQrCode {\n customQueryStringParameterName?: string\n dynamicRedirectType?: QrCodeDynamicRedirectType\n imageOptions?: QrCodeImageOptions\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n intentType?: QrCodeIntentType\n isAskingForGPS?: boolean | null\n locatorKeyType?: QrCodeLocatorKeyType\n qrCodes?: NestedQrCode[]\n serializedLocatorKey?: string | null\n status?: QrCodeStatus | null\n stylingTemplateId?: string | null\n validFrom?: string | Date | number | null\n validTo?: string | Date | number | null\n}\n\nexport interface CreateQrCodeByAssetIdResponseBody {\n asset: Asset\n assetId: string\n locatorKey: string\n qrCode: ResponseQrCode\n qrCodeId: string\n}\n\nexport interface GetQrCodesByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetQrCodesByAssetIdQueryStringParameters {\n ascending?: boolean | null\n background?: string | null\n backgroundGradientColors?: string | null\n backgroundGradientRotation?: number | null\n backgroundGradientType?: QrCodeGradientTypes | null\n cornerDotColor?: string | null\n cornerDotType?: QrCodeCornerDotTypes | null\n cornerSquareColor?: string | null\n cornerSquareType?: QrCodeCornerSquareTypes | null\n darkColor?: string | null\n dataUrl?: boolean | null\n dotType?: QrCodeDotTypes | null\n errorCorrectionLevel?: QrCodeErrorCorrectionLevel | null\n foreground?: string | null\n foregroundGradientColors?: string | null\n foregroundGradientRotation?: number | null\n foregroundGradientType?: QrCodeGradientTypes | null\n format?: QrCodeType | null\n includeQrCodeLinks?: boolean\n lastKey?: string | null\n lightColor?: string | null\n limit?: number | null\n logo?: string | null\n logoMargin?: number | null\n margin?: number | null\n qrCodeLogoId?: string | null\n saveAsBlob?: boolean | null\n scale?: number | null\n sortField?: QrCodeSortingTypes | null\n stylingTemplateId?: string | null\n version?: number | null\n width?: number | null\n}\n\nexport interface GetQrCodesByAssetIdResponseBody {\n assetId: string\n lastKey?: string | null\n numberOfQrCodes: number\n qrCodes: ResponseQrCode[]\n}\n\nexport interface GetScansByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetScansByAssetIdQueryStringParameters {\n ascending?: boolean\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetScansByAssetIdResponseBody {\n assetId: string\n lastKey?: string | null\n numberOfScans: number\n scans: Scan[]\n}\n\nexport interface GetScanLocationDataByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetScanLocationDataByAssetIdQueryStringParameters {\n displayMostRecentPerAsset?: boolean\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanLocationDataByAssetIdResponseBody {\n scansByGeolocation: NestedKeyValueObject\n scansByLocation: NestedKeyValueObject\n}\n\nexport interface CreateQrCodesByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface CreateQrCodesByAssetIdRequestBody {\n qrCodes?: NestedQrCode[]\n}\n\nexport interface CreateQrCodesByAssetIdResponseBody {\n asset: Asset\n assetId: string\n locatorKeys: QrCodeLocator[]\n qrCodes: ResponseQrCode[]\n}\n\nexport interface GetScanExportByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetScanExportByAssetIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanExportByAssetIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface UpdateAssetPathParameters {\n assetId: string\n}\n\nexport interface UpdateAssetRequestBody {\n assetTypeId?: string | null\n category?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n locationId?: string | null\n mediaIds?: Array<any> | null\n name?: string | null\n parentAssetId?: string | null\n state?: string | null\n willCreateSession?: boolean | null\n}\n\nexport interface UpdateAssetResponseBody {\n asset: Asset\n assetId: string\n assetType?: AssetType | null\n location?: Location | null\n}\n\nexport interface UnlinkContactFromAssetPathParameters {\n assetId: string\n contactId: string\n}\n\nexport interface LinkContactToAssetPathParameters {\n assetId: string\n contactId: string\n}\n\nexport interface LinkContactToAssetRequestBody {\n type?: string | null\n}\n\nexport interface LinkContactToAssetResponseBody {\n assetContact: AssetContact\n projectContact: ProjectContact\n}\n\nexport interface GetAllAccountsQueryStringParameters {\n email?: string | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetAllAccountsResponseBody {\n accounts: Account[]\n lastKey?: string | null\n}\n\nexport interface GetNeighborScanCountByAssetIdPathParameters {\n assetId: string\n neighborId: string\n}\n\nexport interface GetNeighborScanCountByAssetIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetNeighborScanCountByAssetIdResponseBody {\n scanCount: number\n}\n\nexport interface DeleteContactPathParameters {\n contactId: string\n}\n\nexport interface DeleteContactResponseBody {\n contact: Contact\n}\n\nexport interface GetContactPathParameters {\n contactId: string\n}\n\nexport interface GetContactResponseBody {\n contact: Contact\n}\n\nexport interface GetConsentByContactIdPathParameters {\n contactId: string\n}\n\nexport interface GetConsentByContactIdQueryStringParameters {\n consentStatus?: ConsentStatus\n consentType?: ConsentType | null\n lastKey?: string | null\n limit?: number | null\n projectId?: string | null\n}\n\nexport interface GetConsentByContactIdResponseBody {\n consent: ContactConsent[]\n contactId: string\n lastKey?: string | null\n}\n\nexport interface GetUserMediasByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetUserMediasByAssetIdQueryStringParameters {\n ascending?: boolean | null\n category?: string | null\n fileType?: string | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n sortField?: UserMediaSortingTypes | null\n}\n\nexport interface GetUserMediasByAssetIdResponseBody {\n assetId: string\n lastKey?: string | null\n userMedias: UserMedia[]\n}\n\nexport interface GetScanExportByContactIdPathParameters {\n contactId: string\n}\n\nexport interface GetScanExportByContactIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanExportByContactIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface CreateConsentByContactIdPathParameters {\n contactId: string\n}\n\nexport interface CreateConsentByContactIdRequestBody {\n consentStatus?: ConsentStatus\n consentType: ConsentType\n consentedAt: string | Date | number\n projectId?: string | null\n url?: string | null\n urls?: string[]\n}\n\nexport interface CreateConsentByContactIdResponseBody {\n consent: ContactConsent\n contactId: string\n}\n\nexport interface GetScanLocationDataByContactIdPathParameters {\n contactId: string\n}\n\nexport interface GetScanLocationDataByContactIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanLocationDataByContactIdResponseBody {\n scansByGeolocation: NestedKeyValueObject\n scansByLocation: NestedKeyValueObject\n}\n\nexport interface DeleteConsentByContactIdPathParameters {\n contactId: string\n}\n\nexport interface DeleteConsentByContactIdQueryStringParameters {\n consentStatus?: ConsentStatus\n consentType: ConsentType\n projectId?: string | null\n}\n\nexport interface DeleteConsentByContactIdResponseBody {\n consent: ContactConsent\n contactId: string\n}\n\nexport interface GetContactExportByContactIdPathParameters {\n contactId: string\n}\n\nexport interface GetContactExportByContactIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetContactExportByContactIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface UpdateContactPathParameters {\n contactId: string\n}\n\nexport interface UpdateContactRequestBody {\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n firstName?: string | null\n lastName?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName?: string | null\n nickname?: string | null\n}\n\nexport interface UpdateContactResponseBody {\n contact: Contact\n contactId: string\n}\n\nexport interface CancelDowngradeRequestPathParameters {\n accountId: string\n}\n\nexport interface CancelDowngradeRequestResponseBody {\n}\n\nexport interface CancelSubscriptionPathParameters {\n accountId: string\n}\n\nexport interface CancelSubscriptionRequestBody {\n}\n\nexport interface CancelSubscriptionResponseBody {\n}\n\nexport interface GetAssetsByContactIdPathParameters {\n contactId: string\n}\n\nexport interface GetAssetsByContactIdQueryStringParameters {\n ascending?: boolean | null\n includeThumbnails?: boolean\n lastKey?: string | null\n limit?: number | null\n thumbnailMargin?: number | null\n thumbnailWidth?: number | null\n type?: string | null\n}\n\nexport interface GetAssetsByContactIdResponseBody {\n assets: Asset[]\n contactId: string\n lastKey?: string | null\n numberOfAssets: number\n}\n\nexport interface GetScansByContactIdPathParameters {\n contactId: string\n}\n\nexport interface GetScansByContactIdResponseBody {\n scans: Scan[]\n}\n\nexport interface ChangeSubscriptionPreviewPathParameters {\n accountId: string\n}\n\nexport interface ChangeSubscriptionPreviewQueryStringParameters {\n planName: string\n}\n\nexport interface ChangeSubscriptionPreviewResponseBody {\n preview: NestedKeyValueObject\n}\n\nexport interface CreateSetupIntentPathParameters {\n accountId: string\n}\n\nexport interface CreateSetupIntentRequestBody {\n appId?: string | null\n planName?: string | null\n updateBilling?: boolean\n}\n\nexport interface CreateSetupIntentResponseBody {\n setupIntent: string\n}\n\nexport interface DowngradePlanPathParameters {\n accountId: string\n}\n\nexport interface DowngradePlanRequestBody {\n planName: string\n}\n\nexport interface DowngradePlanResponseBody {\n}\n\nexport interface GetInvoicesPathParameters {\n accountId: string\n}\n\nexport interface GetInvoicesQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetInvoicesResponseBody {\n invoices: Invoice[]\n lastKey?: string | null\n}\n\nexport interface GetCurrentPeriodPathParameters {\n accountId: string\n}\n\nexport interface GetCurrentPeriodResponseBody {\n endDate: string\n startDate: string\n}\n\nexport interface GetFilePathParameters {\n fileId: string\n}\n\nexport interface GetFileResponseBody {\n file: File\n}\n\nexport interface UpgradePlanPathParameters {\n accountId: string\n}\n\nexport interface UpgradePlanRequestBody {\n planName: string\n}\n\nexport interface UpgradePlanResponseBody {\n}\n\nexport interface LinkContactToScanPathParameters {\n contactId: string\n scanId: string\n}\n\nexport interface LinkContactToScanRequestBody {\n type?: string | null\n}\n\nexport interface LinkContactToScanResponseBody extends ScanContact {\n assetId: string\n assetName: string\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n scanId: string\n}\n\nexport interface CreateUserByInvitationIdPathParameters {\n invitationId: string\n}\n\nexport interface CreateUserByInvitationIdResponseBody {\n account: Account\n accountUser: AccountUser\n}\n\nexport interface DeleteCustomDomainPathParameters {\n customDomain: string\n}\n\nexport interface ValidateFilePathParameters {\n fileId: string\n}\n\nexport interface ValidateFileResponseBody {\n errsObject: NestedKeyValueObject\n file: File\n}\n\nexport interface DeleteInvitationPathParameters {\n invitationId: string\n}\n\nexport interface DeleteInvitationResponseBody {\n accountInvitation: AccountInvitation\n emailInvitation?: EmailInvitation | null\n}\n\nexport interface BatchUpdateAssetLocationsPathParameters {\n locationId: string\n}\n\nexport interface BatchUpdateAssetLocationsRequestBody {\n assetIds: Array<any>\n}\n\nexport interface BatchUpdateAssetLocationsResponseBody {\n assets: Asset\n}\n\nexport interface GetInvitationPathParameters {\n invitationId: string\n}\n\nexport interface GetInvitationResponseBody {\n accountInvitation: AccountInvitation\n}\n\nexport interface DeleteLocationPathParameters {\n locationId: string\n}\n\nexport interface DeleteLocationQueryStringParameters {\n}\n\nexport interface DeleteLocationResponseBody {\n location: Location\n}\n\nexport interface RetryCustomDomainPathParameters {\n customDomain: string\n}\n\nexport interface RetryCustomDomainResponseBody {\n accountDomain: AccountDomain\n}\n\nexport interface GetAssetsByLocationPathParameters {\n locationId: string\n}\n\nexport interface GetAssetsByLocationQueryStringParameters {\n ascending?: boolean | null\n assetTypeName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n includeThumbnails?: boolean\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n queryCondition?: QueryConditions | null\n sortField?: AssetSortingTypes | null\n state?: string | null\n thumbnailMargin?: number | null\n thumbnailWidth?: number | null\n}\n\nexport interface GetAssetsByLocationResponseBody {\n assets: Asset[]\n lastKey?: string | null\n locationId: string\n numberOfAssets: number\n}\n\nexport interface GetBillingDetailsPathParameters {\n accountId: string\n}\n\nexport interface GetBillingDetailsResponseBody {\n billingDetails?: CreditCard | null\n}\n\nexport interface CheckCustomLocatorKeyRangePathParameters {\n customDomain: string\n}\n\nexport interface CheckCustomLocatorKeyRangeQueryStringParameters {\n endingValue: number\n prefix: string\n startingValue: number\n}\n\nexport interface CheckCustomLocatorKeyRangeResponseBody {\n}\n\nexport interface GetPricePlansResponseBody {\n pricePlans: NestedKeyValueObject\n}\n\nexport interface GetJobPathParameters {\n jobId: string\n}\n\nexport interface GetJobResponseBody {\n job: Job\n}\n\nexport interface InvokePrintJobByJobIdPathParameters {\n printJobId: string\n}\n\nexport interface InvokePrintJobByJobIdResponseBody {\n printJob: PrintJob\n}\n\nexport interface SendSupportEmailRequestBody {\n body: string\n captchaToken: string\n from: string\n subject?: string\n to?: OpenscreenEmails\n}\n\nexport interface GetQrCodeLinkPathParameters {\n qrCodeLink: string\n}\n\nexport interface GetQrCodeLinkResponseBody {\n qrCodeLink: QrCodeLink\n}\n\nexport interface GetQrCodeLogoByQrCodeLogoIdPathParameters {\n qrCodeLogoId: string\n}\n\nexport interface GetQrCodeLogoByQrCodeLogoIdResponseBody {\n qrCodeLogo: QrCodeLogo\n qrCodeLogoId: string\n}\n\nexport interface DeletePrintJobPathParameters {\n printJobId: string\n}\n\nexport interface DeletePrintJobResponseBody {\n printJob: PrintJob\n}\n\nexport interface UpdateQrCodeLogoByQrCodeLogoIdPathParameters {\n qrCodeLogoId: string\n}\n\nexport interface UpdateQrCodeLogoByQrCodeLogoIdRequestBody {\n hidden?: boolean | null\n}\n\nexport interface UpdateQrCodeLogoByQrCodeLogoIdResponseBody {\n qrCodeLogo: QrCodeLogo\n qrCodeLogoId: string\n}\n\nexport interface CreateContactByScanIdPathParameters {\n scanId: string\n}\n\nexport interface CreateContactByScanIdRequestBody {\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n firstName?: string | null\n lastName?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName?: string | null\n nickname?: string | null\n type?: string | null\n}\n\nexport interface CreateContactByScanIdResponseBody {\n asset: Asset\n assetContact: AssetContact\n assetId: string\n contact: Contact\n projectContact: ProjectContact\n scanContact: ScanContact\n}\n\nexport interface DeleteJobPathParameters {\n jobId: string\n}\n\nexport interface DeleteJobResponseBody {\n job: Job\n}\n\nexport interface SaveGeolocationByScanIdPathParameters {\n scanId: string\n}\n\nexport interface SaveGeolocationByScanIdRequestBody {\n latitude?: string | null\n longitude?: string | null\n}\n\nexport interface GetScanPathParameters {\n scanId: string\n}\n\nexport interface GetScanQueryStringParameters {\n getUserMedias?: boolean\n}\n\nexport interface GetScanResponseBody {\n asset: Asset\n assetType?: AssetType | null\n contacts: Contact[]\n qrCode: QrCode\n scan: Scan\n}\n\nexport interface UpdateScanCustomAttributePathParameters {\n scanId: string\n}\n\nexport interface UpdateScanCustomAttributeRequestBody {\n customAttributes?: NestedKeyValueObject | null\n}\n\nexport interface UpdateScanCustomAttributeResponseBody {\n scan: Scan\n}\n\nexport interface CreateLinkByQrCodePathParameters {\n qrCodeId: string\n}\n\nexport interface CreateLinkByQrCodeRequestBody {\n qrCodeLink?: string | null\n}\n\nexport interface CreateLinkByQrCodeResponseBody {\n qrCodeLink: QrCodeLink\n}\n\nexport interface DeleteLinkByQrCodePathParameters {\n link: string\n qrCodeId: string\n}\n\nexport interface UpdateLocationPathParameters {\n locationId: string\n}\n\nexport interface UpdateLocationRequestBody {\n address?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n name?: string | null\n state?: string | null\n}\n\nexport interface UpdateLocationResponseBody {\n location: Location\n}\n\nexport interface GetQrCodePathParameters {\n qrCodeId: string\n}\n\nexport interface GetQrCodeQueryStringParameters {\n background?: string | null\n backgroundGradientColors?: string | null\n backgroundGradientRotation?: number | null\n backgroundGradientType?: QrCodeGradientTypes | null\n cornerDotColor?: string | null\n cornerDotType?: QrCodeCornerDotTypes | null\n cornerSquareColor?: string | null\n cornerSquareType?: QrCodeCornerSquareTypes | null\n darkColor?: string | null\n dataUrl?: boolean | null\n dotType?: QrCodeDotTypes | null\n errorCorrectionLevel?: QrCodeErrorCorrectionLevel | null\n foreground?: string | null\n foregroundGradientColors?: string | null\n foregroundGradientRotation?: number | null\n foregroundGradientType?: QrCodeGradientTypes | null\n format?: QrCodeType | null\n getQrCodeLinks?: boolean\n lightColor?: string | null\n logo?: string | null\n logoMargin?: number | null\n margin?: number | null\n qrCodeLogoId?: string | null\n saveAsBlob?: boolean | null\n scale?: number | null\n stylingTemplateId?: string | null\n version?: number | null\n width?: number | null\n}\n\nexport interface GetQrCodeResponseBody extends ResponseQrCode {\n appAccountId?: string | null\n appId?: string | null\n assetId: string\n created?: string | Date | number | null\n customDomain?: string | null\n dynamicRedirectType?: QrCodeDynamicRedirectType\n image: QrCodeImage\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n intentType?: QrCodeIntentType\n isAskingForGPS?: boolean | null\n locatorKey: string\n locatorKeyType?: QrCodeLocatorKeyType\n modified?: string | Date | number | null\n name?: string | null\n projectId?: string | null\n qrCodeId: string\n qrCodeLinks?: Array<any> | null\n scanCount: number\n serializedLocatorKey?: string | null\n status?: QrCodeStatus\n stylingTemplateId?: string | null\n validFrom?: string | Date | number | null\n validTo?: string | Date | number | null\n}\n\nexport interface UpdateQrCodePathParameters {\n qrCodeId: string\n}\n\nexport interface UpdateQrCodeRequestBody {\n customDomain?: string | null\n dynamicRedirectType?: QrCodeDynamicRedirectType | null\n imageOptions?: QrCodeImageOptions | null\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n isAskingForGPS?: boolean | null\n status?: QrCodeStatus | null\n stylingTemplateId?: string | null\n}\n\nexport interface UpdateQrCodeResponseBody {\n qrCode: ResponseQrCode\n}\n\nexport interface CompleteUserMediaMultipartUploadPathParameters {\n mediaId: string\n}\n\nexport interface CompleteUserMediaMultipartUploadRequestBody {\n key: string\n parts: MultipartUploadPart[]\n uploadId: string\n}\n\nexport interface CompleteUserMediaMultipartUploadResponseBody {\n userMedia: UserMedia\n}\n\nexport interface LinkMediaToAssetPathParameters {\n assetId: string\n mediaId: string\n}\n\nexport interface LinkMediaToAssetResponseBody {\n userMedia: UserMedia\n}\n\nexport interface LinkMediaToScanPathParameters {\n mediaId: string\n scanId: string\n}\n\nexport interface LinkMediaToScanResponseBody {\n userMedia: UserMedia\n}\n\nexport interface UnlinkMediaToAssetPathParameters {\n assetId: string\n mediaId: string\n}\n\nexport interface UnlinkMediaToAssetResponseBody {\n}\n\nexport interface LinkMediaToProjectPathParameters {\n mediaId: string\n projectId: string\n}\n\nexport interface LinkMediaToProjectResponseBody {\n userMedia: UserMedia\n}\n\nexport interface GetUserMediaPathParameters {\n mediaId: string\n}\n\nexport interface GetUserMediaResponseBody {\n userMedia: UserMedia\n}\n\nexport interface UnlinkMediaToScanPathParameters {\n mediaId: string\n scanId: string\n}\n\nexport interface UnlinkMediaToScanResponseBody {\n userMedia: UserMedia\n}\n\nexport interface GetLinksByQrCodePathParameters {\n qrCodeId: string\n}\n\nexport interface GetLinksByQrCodeResponseBody {\n qrCodeLinks: Array<any>\n}\n\nexport interface DeletePrintStickerTemplatePathParameters {\n printStickerTemplateId: string\n}\n\nexport interface DeletePrintPageTemplatePathParameters {\n printPageTemplateId: string\n}\n\nexport interface GetPrintPageTemplatePathParameters {\n printPageTemplateId: string\n}\n\nexport interface GetPrintPageTemplateResponseBody {\n printPageTemplate: PrintPageTemplate\n}\n\nexport interface DeleteStylingTemplateByStylingTemplateIdPathParameters {\n stylingTemplateId: string\n}\n\nexport interface DeleteStylingTemplateByStylingTemplateIdResponseBody {\n qrCodeStylingTemplate: QrCodeStylingTemplate\n stylingTemplateId: string\n}\n\nexport interface GetUserRolesResponseBody {\n userRoles: UserRole[]\n}\n\nexport interface GetPrintStickerTemplatePathParameters {\n printStickerTemplateId: string\n}\n\nexport interface GetPrintStickerTemplateResponseBody {\n printStickerTemplate: PrintStickerTemplate\n}\n\nexport interface UpdateUserMediaPathParameters {\n mediaId: string\n}\n\nexport interface UpdateUserMediaRequestBody {\n category?: string | null\n description?: string | null\n mediaType: string\n title?: string | null\n}\n\nexport interface UpdateUserMediaResponseBody {\n userMedia: UserMedia\n}\n\nexport interface UpdateStylingTemplateByStylingTemplateIdPathParameters {\n stylingTemplateId: string\n}\n\nexport interface UpdateStylingTemplateByStylingTemplateIdRequestBody {\n imageOptions?: QrCodeImageOptionsNoDefaults\n name?: string | null\n qrCodeLogoId?: string | null\n}\n\nexport interface UpdateStylingTemplateByStylingTemplateIdResponseBody {\n qrCodeStylingTemplate: QrCodeStylingTemplate\n stylingTemplateId: string\n}\n\nexport interface GetStylingTemplateByStylingTemplateIdPathParameters {\n stylingTemplateId: string\n}\n\nexport interface GetStylingTemplateByStylingTemplateIdResponseBody {\n qrCodeStylingTemplate: QrCodeStylingTemplate\n stylingTemplateId: string\n}\n\nexport interface CreateAccountByUserIdPathParameters {\n userId: string\n}\n\nexport interface CreateAccountByUserIdRequestBody {\n companyName?: string | null\n}\n\nexport interface CreateAccountByUserIdResponseBody extends Account {\n accountId: string\n accountStatus?: AccountStatus\n assetCount: number\n campaignStatus?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface GetErrorsByUserIdPathParameters {\n userId: string\n}\n\nexport interface GetErrorsByUserIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetErrorsByUserIdResponseBody {\n errors: Response[]\n lastKey?: string | null\n numberOfErrors: number\n userId: string\n}\n\nexport interface GetInvitationsByUserIdPathParameters {\n userId: string\n}\n\nexport interface GetInvitationsByUserIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetInvitationsByUserIdResponseBody {\n accountInvitations: AccountInvitation[]\n lastKey?: string | null\n numberOfInvitations: number\n userId: string\n}\n\nexport interface UpdatePrintStickerTemplatePathParameters {\n printStickerTemplateId: string\n}\n\nexport interface UpdatePrintStickerTemplateRequestBody {\n bleed?: boolean | null\n created?: string | Date | number | null\n isDeleted?: boolean | null\n lastUsedAt?: string | Date | number | null\n modified?: string | Date | number | null\n name: string\n previewImage?: string | null\n serializedFabric: NestedKeyValueObject\n stickerShape: StickerShape\n stickerSize: Array<any>\n unit: PrintUnit\n}\n\nexport interface UpdatePrintStickerTemplateResponseBody {\n printStickerTemplate: PrintStickerTemplate\n}\n\nexport interface GetUserPathParameters {\n userId: string\n}\n\nexport interface GetUserResponseBody extends User {\n created?: string | Date | number | null\n email: string\n firstName: string\n lastName: string\n middleName: string\n modified?: string | Date | number | null\n ssoIdentity?: NestedKeyValueObject | null\n userId: string\n}\n\nexport interface GetUserSettingsPathParameters {\n path: UserSettingsDomain\n userId: string\n}\n\nexport interface GetUserSettingsResponseBody extends UserSettings {\n created?: string | Date | number | null\n lastSelectedAccountId?: string | null\n modified?: string | Date | number | null\n path: UserSettingsDomain\n userId: string\n}\n\nexport interface DeleteQrCodePathParameters {\n qrCodeId: string\n}\n\nexport interface DeleteQrCodeResponseBody {\n qrCode: QrCode\n}\n\nexport interface UnlinkMediaToProjectPathParameters {\n mediaId: string\n projectId: string\n}\n\nexport interface UnlinkMediaToProjectResponseBody {\n}\n\nexport interface GetAccountsByUserIdPathParameters {\n userId: string\n}\n\nexport interface GetAccountsByUserIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetAccountsByUserIdResponseBody {\n accounts: AccountResponse[]\n lastKey?: string | null\n numberOfAccounts: number\n userId: string\n}\n\nexport interface CreateAssetBatchValidationJobByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateAssetBatchValidationJobByProjectIdRequestBody {\n callbackUrl?: string | null\n fileId?: string | null\n trackFileId?: string | null\n trackJobId?: string | null\n}\n\nexport interface CreateAssetBatchValidationJobByProjectIdResponseBody {\n job: Job\n}\n\nexport interface UpdatePrintPageTemplatePathParameters {\n printPageTemplateId: string\n}\n\nexport interface UpdatePrintPageTemplateRequestBody {\n created?: string | Date | number | null\n format?: PrintFormat | null\n horizontalMargin: number\n horizontalPadding: number\n isDeleted?: boolean | null\n modified?: string | Date | number | null\n name: string\n numberOfColumns: number\n numberOfRows: number\n orientation?: PrintOrientation | null\n pageSize: Array<any>\n printMode?: PrintMode | null\n printTemplate?: PrintTemplate | null\n stickerShape: StickerShape\n stickerSize: Array<any>\n unit: PrintUnit\n verticalMargin: number\n verticalPadding: number\n}\n\nexport interface UpdatePrintPageTemplateResponseBody {\n printPageTemplate: PrintPageTemplate\n}\n\nexport interface CreateAssetCreationJobByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateAssetCreationJobByProjectIdRequestBody {\n assets?: AssetFieldsObject[] | null\n callbackUrl?: string | null\n commonProperties?: AssetFieldsObject | null\n fileId?: string | null\n}\n\nexport interface CreateAssetCreationJobByProjectIdResponseBody {\n batch: Batch\n job: Job\n}\n\nexport interface CreateAssetCreationPresignedUrlByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateAssetCreationPresignedUrlByProjectIdRequestBody {\n fileType?: AssetCreationFileTypes\n}\n\nexport interface CreateAssetCreationPresignedUrlByProjectIdResponseBody {\n file: File\n presignedUrl: string\n}\n\nexport interface CreateAssetGraphByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateAssetGraphByProjectIdRequestBody {\n edges: NestedKeyValueObject\n name: string\n nodes: NestedKeyValueObject\n}\n\nexport interface CreateAssetGraphByProjectIdResponseBody {\n assetGraph: AssetGraph\n}\n\nexport interface UpdateUserPathParameters {\n userId: string\n}\n\nexport interface UpdateUserRequestBody {\n firstName?: string | null\n lastName?: string | null\n middleName?: string | null\n}\n\nexport interface UpdateUserResponseBody extends User {\n created?: string | Date | number | null\n email: string\n firstName: string\n lastName: string\n middleName: string\n modified?: string | Date | number | null\n ssoIdentity?: NestedKeyValueObject | null\n userId: string\n}\n\nexport interface CreateSmsTemplateByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateSmsTemplateByProjectIdRequestBody {\n body?: string | null\n responseUrl?: string | null\n smsTemplateName: string\n statusUrl?: string | null\n}\n\nexport interface CreateSmsTemplateByProjectIdResponseBody {\n smsTemplate: SmsTemplate\n}\n\nexport interface CreateAssetsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateAssetsByProjectIdRequestBody {\n assets: AssetFieldsObject[]\n commonProperties?: AssetFieldsObject | null\n}\n\nexport interface CreateAssetsByProjectIdResponseBody {\n assets: ResponseAsset[]\n numberOfAssets: number\n projectId: string\n}\n\nexport interface CreateAssetByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateAssetByProjectIdRequestBody extends NestedAsset {\n category?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n locationId?: string | null\n name: string\n qrCodes?: NestedQrCode[] | null\n state?: string | null\n useCustomDomain?: boolean | null\n willCreateSession?: boolean | null\n}\n\nexport interface CreateAssetByProjectIdResponseBody {\n asset: ResponseAsset\n projectId: string\n}\n\nexport interface CreateSelfQueuePrintJobByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateSelfQueuePrintJobByProjectIdRequestBody {\n batchId?: string | null\n batchName?: string | null\n callbackUrl?: string | null\n imageOptions?: QrCodeImageOptions | null\n pageSize?: number | null\n printOptions: PrintOptions\n serializedFabric?: NestedKeyValueObject | null\n sortField?: QrCodeSortingTypes | null\n stylingTemplateId?: string | null\n}\n\nexport interface CreateSelfQueuePrintJobByProjectIdResponseBody {\n job: Job\n}\n\nexport interface CreateTemplatedPrintJobByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateTemplatedPrintJobByProjectIdRequestBody {\n assetIds?: Array<any> | null\n callbackUrl?: string | null\n imageOptions?: QrCodeImageOptions | null\n name?: string | null\n printOptions: PrintOptions\n serializedFabric: NestedKeyValueObject\n stylingTemplateId?: string | null\n}\n\nexport interface CreateTemplatedPrintJobByProjectIdResponseBody {\n fileExpiry: string | Date | number\n job: PrintJob\n outputUrl: string\n}\n\nexport interface CreateContactByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateContactByProjectIdRequestBody {\n asset?: NestedAsset | null\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n firstName?: string | null\n lastName?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName?: string | null\n nickname?: string | null\n type?: string | null\n}\n\nexport interface CreateContactByProjectIdResponseBody {\n asset?: Asset | null\n assetContact?: AssetContact | null\n contact: Contact\n projectContact: ProjectContact\n projectId: string\n qrCodes?: QrCode[] | null\n}\n\nexport interface CreateTemplatedPrintPreviewByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateTemplatedPrintPreviewByProjectIdRequestBody {\n assetIds?: Array<any> | null\n batchId?: string | null\n imageOptions?: QrCodeImageOptions | null\n printOptions: PrintOptions\n serializedFabric: NestedKeyValueObject\n stylingTemplateId?: string | null\n}\n\nexport interface CreateTemplatedPrintPreviewByProjectIdResponseBody {\n outputUrl: string\n}\n\nexport interface DeleteContactsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface DeleteContactsByProjectIdQueryStringParameters {\n cellPhone?: string | null\n emailAddress?: string | null\n}\n\nexport interface DeleteContactsByProjectIdResponseBody {\n contacts: Contact[]\n projectId: string\n}\n\nexport interface DeleteSmsTemplatePathParameters {\n projectId: string\n smsTemplateName: string\n}\n\nexport interface DeleteSmsTemplateResponseBody {\n body?: string | null\n projectId: string\n responseUrl?: string | null\n smsTemplateName?: string | null\n statusUrl?: string | null\n}\n\nexport interface DeleteProjectPathParameters {\n projectId: string\n}\n\nexport interface DeleteProjectResponseBody {\n project: Project\n}\n\nexport interface GetAdvancedAssetReportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetAdvancedAssetReportByProjectIdQueryStringParameters {\n limit?: number | null\n nextToken?: string | null\n queryExecutionId?: string | null\n search?: string | null\n}\n\nexport interface GetAdvancedAssetReportByProjectIdResponseBody {\n data: Array<any>\n meta: NestedKeyValueObject\n}\n\nexport interface GetAdvancedContactReportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetAdvancedContactReportByProjectIdQueryStringParameters {\n limit?: number | null\n nextToken?: string | null\n queryExecutionId?: string | null\n search?: string | null\n}\n\nexport interface GetAdvancedContactReportByProjectIdResponseBody {\n data: Array<any>\n meta: NestedKeyValueObject\n}\n\nexport interface GetAdvancedScanReportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetAdvancedScanReportByProjectIdQueryStringParameters {\n displayMostRecentPerAsset?: boolean\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetAdvancedScanReportByProjectIdResponseBody {\n dynamicQRCodesTotal: number\n lastScan?: LastScan | null\n scansByDevice: NestedKeyValueObject\n scansByGeolocation: NestedKeyValueObject\n scansByLocation: NestedKeyValueObject\n scansTotal: number\n staticQRCodesTotal: number\n}\n\nexport interface SetUserSettingsPathParameters {\n path: UserSettingsDomain\n userId: string\n}\n\nexport interface SetUserSettingsRequestBody {\n lastSelectedAccountId: string\n}\n\nexport interface SetUserSettingsResponseBody extends UserSettings {\n created?: string | Date | number | null\n lastSelectedAccountId?: string | null\n modified?: string | Date | number | null\n path: UserSettingsDomain\n userId: string\n}\n\nexport interface GetAssetExportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetAssetExportByProjectIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetAssetExportByProjectIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface GetAssetGraphsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetAssetGraphsByProjectIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetAssetGraphsByProjectIdResponseBody {\n assetGraphs: AssetGraph[]\n lastKey?: string | null\n}\n\nexport interface GetBasicAssetReportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetBasicAssetReportByProjectIdResponseBody {\n assetsCount: number\n}\n\nexport interface GetAssetsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetAssetsByProjectIdQueryStringParameters {\n ascending?: boolean | null\n assetTypeName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n includeQrCodeLinks?: boolean\n includeThumbnails?: boolean\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n queryCondition?: QueryConditions | null\n sortField?: AssetSortingTypes | null\n state?: string | null\n thumbnailMargin?: number | null\n thumbnailWidth?: number | null\n}\n\nexport interface GetAssetsByProjectIdResponseBody {\n assets: Asset[]\n lastKey?: string | null\n numberOfAssets: number\n projectId: string\n}\n\nexport interface GetBatchesByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetBatchesByProjectIdQueryStringParameters extends NestedAsset {\n ascending?: boolean | null\n category?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n lastKey?: string | null\n limit?: number | null\n locationId?: string | null\n name: string\n qrCodes?: NestedQrCode[] | null\n state?: string | null\n willCreateSession?: boolean | null\n}\n\nexport interface GetBatchesByProjectIdResponseBody {\n asset: ResponseAsset\n projectId: string\n}\n\nexport interface GetConsentByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetConsentByProjectIdQueryStringParameters {\n consentStatus?: ConsentStatus\n consentType: ConsentType\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetConsentByProjectIdResponseBody {\n consent: ContactConsent[]\n lastKey?: string | null\n projectId: string\n}\n\nexport interface GetContactExportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetContactExportByProjectIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetContactExportByProjectIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface CreateQrCodeByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateQrCodeByProjectIdRequestBody {\n imageOptions?: QrCodeImageOptions\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n status?: QrCodeStatus | null\n stylingTemplateId?: string | null\n}\n\nexport interface CreateQrCodeByProjectIdResponseBody {\n locatorKey: string\n projectId: string\n qrCode: QrCode\n qrCodeId: string\n}\n\nexport interface GetContactsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetContactsByProjectIdQueryStringParameters {\n ascending?: boolean | null\n assetName?: string | null\n contactName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n email?: string | null\n lastKey?: string | null\n limit?: number | null\n phone?: string | null\n queryCondition?: QueryConditions | null\n sortField?: ContactSortingTypes | null\n}\n\nexport interface GetContactsByProjectIdResponseBody {\n contacts: Contact[]\n lastKey?: string | null\n numberOfContacts: number\n projectId: string\n}\n\nexport interface CreateContactsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateContactsByProjectIdRequestBody {\n contacts: NestedContact[]\n}\n\nexport interface CreateContactsByProjectIdResponseBody {\n contacts: Array<any>\n numberOfContacts: number\n projectId: string\n}\n\nexport interface GetMostScannedAssetsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetMostScannedAssetsByProjectIdQueryStringParameters {\n from?: string | Date | number | null\n limit?: number | null\n to?: string | Date | number | null\n}\n\nexport interface GetMostScannedAssetsByProjectIdResponseBody {\n mostScannedAssets: Array<any>\n}\n\nexport interface GetBasicContactReportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetBasicContactReportByProjectIdResponseBody {\n contactsCount: number\n}\n\nexport interface GetQrCodesByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetQrCodesByProjectIdQueryStringParameters {\n ascending?: boolean | null\n assetName?: string | null\n lastKey?: string | null\n limit?: number | null\n sortField?: QrCodeSortingTypes | null\n willGetLogoIds?: boolean | null\n}\n\nexport interface GetQrCodesByProjectIdResponseBody {\n lastKey?: string | null\n numberOfQrCodes: number\n projectId: string\n qrCodes: QrCode[]\n}\n\nexport interface GetScanDayOfWeekByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetScanDayOfWeekByProjectIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanDayOfWeekByProjectIdResponseBody {\n data: NestedKeyValueObject\n}\n\nexport interface GetScanTimelineByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetScanTimelineByProjectIdQueryStringParameters {\n from: string | Date | number\n to?: string | Date | number | null\n type: ScanTimelineOptions\n}\n\nexport interface GetScanTimelineByProjectIdResponseBody {\n data: NestedKeyValueObject\n}\n\nexport interface GetScansByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetScansByProjectIdQueryStringParameters {\n ascending?: boolean | null\n assetName?: string | null\n contactId?: string | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetScansByProjectIdResponseBody {\n lastKey?: string | null\n numberOfScans: number\n projectId: string\n scans: Scan[]\n}\n\nexport interface GetScanExportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetScanExportByProjectIdRequestBody {\n colMap?: NestedKeyValueObject | null\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanExportByProjectIdResponseBody {\n fileName?: string | null\n job: Job\n}\n\nexport interface GetUserMediasByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetUserMediasByProjectIdQueryStringParameters {\n ascending?: boolean | null\n category?: string | null\n fileType?: string | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n sortField?: UserMediaSortingTypes | null\n}\n\nexport interface GetUserMediasByProjectIdResponseBody {\n lastKey?: string | null\n projectId: string\n userMedias: UserMedia[]\n}\n\nexport interface GetScanTimeOfDayByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetScanTimeOfDayByProjectIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanTimeOfDayByProjectIdResponseBody {\n data: NestedKeyValueObject\n}\n\nexport interface UpdateProjectByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface UpdateProjectByProjectIdRequestBody {\n companyName?: string | null\n customDomain?: string | null\n description?: string | null\n name?: string | null\n status?: ProjectStatus | null\n}\n\nexport interface UpdateProjectByProjectIdResponseBody {\n project: Project\n}\n\nexport interface GetProjectByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetProjectByProjectIdResponseBody {\n project: Project\n}\n\nexport interface ChangePasswordRequestBody {\n newPassword: string\n password?: string | null\n}\n\nexport interface ChangePasswordResponseBody extends UserSessionResponseBody {\n expires: string | Date | number\n scope: AuthTokenScope\n user?: User | null\n userId: string\n}\n\nexport interface CheckSessionResponseBody {\n authenticated: boolean\n expires?: string | Date | number | null\n scope?: AuthTokenScope | null\n user?: User | null\n userId?: string | null\n}\n\nexport interface GetSessionRequestBody {\n email: string\n password: string\n}\n\nexport interface GetSessionResponseBody extends UserSessionResponseBody {\n expires: string | Date | number\n scope: AuthTokenScope\n user?: User | null\n userId: string\n}\n\nexport interface ResendConfirmationRequestBody {\n email: string\n pricePlanName?: string | null\n}\n\nexport interface GetSessionRefreshUserSessionResponseBody {\n expires: string | Date | number\n scope: AuthTokenScope\n user?: User | null\n userId: string\n}\n\nexport interface ResetPasswordRequestBody {\n email: string\n}\n\nexport interface CreateUserRequestBody {\n companyName?: string | null\n email: string\n firstName?: string | null\n groups?: string | null\n lastName?: string | null\n middleName?: string | null\n password: string\n pricePlanName?: string | null\n}\n\nexport interface DeleteSessionResponseBody extends UserSessionResponseBody {\n expires: string | Date | number\n scope: AuthTokenScope\n user?: User | null\n userId: string\n}\n\nexport interface DeleteUserMediaPathParameters {\n mediaId: string\n}\n\nexport interface DeleteUserMediaResponseBody {\n userMedia: UserMedia\n}\n\n// HANDLER REQUEST CLASSES\n\nexport class GetApiKeyRequest extends RequestGet<GetApiKeyPathParameters, undefined, GetApiKeyResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"apiKeyId\",\"routePart\":\"apikeys\",\"sdkPartName\":\"apikey\"}]\n}\n\nexport class UpdateApiKeyRequest extends RequestPatch<UpdateApiKeyPathParameters, undefined, UpdateApiKeyRequestBody, UpdateApiKeyResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"apiKeyId\",\"routePart\":\"apikeys\",\"sdkPartName\":\"apikey\"}]\n}\n\nexport class GetAppByAppIdRequest extends RequestGet<GetAppByAppIdPathParameters, undefined, GetAppByAppIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"appId\",\"routePart\":\"apps\",\"sdkPartName\":\"app\"}]\n}\n\nexport class GetAppsRequest extends RequestGet<undefined, GetAppsQueryStringParameters, GetAppsResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"apps\",\"sdkPartName\":\"apps\"}]\n}\n\nexport class GetPublishedAppsRequest extends RequestGet<undefined, GetPublishedAppsQueryStringParameters, GetPublishedAppsResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"apps/published\",\"sdkPartName\":\"appsPublished\"}]\n}\n\nexport class LoadAppRequest extends RequestPost<LoadAppPathParameters, undefined, undefined, LoadAppResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"appId\",\"routePart\":\"apps\",\"sdkPartName\":\"app\"},{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"load\",\"sdkPartName\":\"load\"}]\n}\n\nexport class ResetApiKeySecretRequest extends RequestPatch<ResetApiKeySecretPathParameters, undefined, undefined, ResetApiKeySecretResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"apiKeyId\",\"routePart\":\"apikeys\",\"sdkPartName\":\"apikey\"},{\"routePart\":\"secret\",\"sdkPartName\":\"secret\"}]\n}\n\nexport class UpdateAppByAppIdRequest extends RequestPatch<UpdateAppByAppIdPathParameters, undefined, UpdateAppByAppIdRequestBody, UpdateAppByAppIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"appId\",\"routePart\":\"apps\",\"sdkPartName\":\"app\"}]\n}\n\nexport class CreateAppRequest extends RequestPost<CreateAppByAccountIdPathParameters, undefined, CreateAppByAccountIdRequestBody, CreateAppByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"apps\",\"sdkPartName\":\"apps\"}]\n}\n\nexport class CreateApiKeyByAccountIdRequest extends RequestPost<CreateApiKeyByAccountIdPathParameters, undefined, CreateApiKeyByAccountIdRequestBody, CreateApiKeyByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"apikeys\",\"sdkPartName\":\"apikeys\"}]\n}\n\nexport class CreateAssetTypeByAccountIdRequest extends RequestPost<CreateAssetTypeByAccountIdPathParameters, undefined, CreateAssetTypeByAccountIdRequestBody, CreateAssetTypeByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"assettypes\",\"sdkPartName\":\"assettypes\"}]\n}\n\nexport class CreateImageUploadPresignedUrlRequest extends RequestPost<CreateImageUploadPresignedPathParameters, undefined, CreateImageUploadPresignedRequestBody, CreateImageUploadPresignedResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"image/upload\",\"sdkPartName\":\"imageUpload\"}]\n}\n\nexport class CheckUrlSafetyByAccountIdRequest extends RequestPost<CheckUrlSafetyByAccountIdPathParameters, undefined, CheckUrlSafetyByAccountIdRequestBody, CheckUrlSafetyByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"urlSafeties\",\"sdkPartName\":\"urlSafeties\"}]\n}\n\nexport class CreateInvitationByAccountIdRequest extends RequestPost<CreateInvitationByAccountIdPathParameters, undefined, CreateInvitationByAccountIdRequestBody, CreateInvitationByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"invitations\",\"sdkPartName\":\"invitations\"}]\n}\n\nexport class GetApiKeySecretRequest extends RequestGet<GetApiKeySecretPathParameters, undefined, GetApiKeySecretResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"apiKeyId\",\"routePart\":\"apikeys\",\"sdkPartName\":\"apikey\"},{\"routePart\":\"secret\",\"sdkPartName\":\"secret\"}]\n}\n\nexport class CreatePrintPageTemplateByAccountIdRequest extends RequestPost<CreatePrintPageTemplateByAccountIdPathParameters, undefined, CreatePrintPageTemplateByAccountIdRequestBody, CreatePrintPageTemplateByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"printPageTemplates\",\"sdkPartName\":\"printPageTemplates\"}]\n}\n\nexport class CreateQrCodeStylingTemplateByAccountRequest extends RequestPost<CreateQrCodeStylingTemplateByAccountIdPathParameters, undefined, CreateQrCodeStylingTemplateByAccountIdRequestBody, CreateQrCodeStylingTemplateByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"stylingtemplates\",\"sdkPartName\":\"stylingtemplates\"}]\n}\n\nexport class CreateUserMediaMultipartPresignedUrlByAccountIdRequest extends RequestPost<CreateUserMediaMultipartPresignedUrlByAccountIdPathParameters, undefined, CreateUserMediaMultipartPresignedUrlByAccountIdRequestBody, CreateUserMediaMultipartPresignedUrlByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"usermedias/presignedurlmultipart\",\"sdkPartName\":\"usermediasPresignedurlmultipart\"}]\n}\n\nexport class CreatePrintStickerTemplateByAccountIdRequest extends RequestPost<CreatePrintStickerTemplateByAccountIdPathParameters, undefined, CreatePrintStickerTemplateByAccountIdRequestBody, CreatePrintStickerTemplateByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"printStickerTemplates\",\"sdkPartName\":\"printStickerTemplates\"}]\n}\n\nexport class GetAccountAccessDataRequest extends RequestGet<CheckAccountAccessPathParameters, undefined, CheckAccountAccessResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"},{\"routePart\":\"confirm\",\"sdkPartName\":\"confirm\"}]\n}\n\nexport class CreateQueryableCustomAttributeRequest extends RequestPost<CreateQueryableCustomAttributeByAccountIdPathParameters, undefined, CreateQueryableCustomAttributeByAccountIdRequestBody, CreateQueryableCustomAttributeByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"customattributes\",\"sdkPartName\":\"customattributes\"}]\n}\n\nexport class CreateUserMediaPresignedUrlByAccountIdRequest extends RequestPost<CreateUserMediaPresignedUrlByAccountIdPathParameters, undefined, CreateUserMediaPresignedUrlByAccountIdRequestBody, CreateUserMediaPresignedUrlByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"usermedias/presignedurl\",\"sdkPartName\":\"usermediasPresignedurl\"}]\n}\n\nexport class CreateTicketByAccountIdRequest extends RequestPost<CreateTicketByAccountIdPathParameters, undefined, CreateTicketByAccountIdRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"zendeskTicket\",\"sdkPartName\":\"zendeskTicket\"}]\n}\n\nexport class DeleteContactsByAccountIdRequest extends RequestDelete<DeleteContactsByAccountIdPathParameters, DeleteContactsByAccountIdQueryStringParameters, DeleteContactsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"contacts/batch\",\"sdkPartName\":\"contactsBatch\"}]\n}\n\nexport class CreateProjectByAccountIdRequest extends RequestPost<CreateProjectByAccountIdPathParameters, undefined, CreateProjectByAccountIdRequestBody, CreateProjectByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"projects\",\"sdkPartName\":\"projects\"}]\n}\n\nexport class GetAccountRequest extends RequestGet<GetAccountPathParameters, undefined, GetAccountResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"}]\n}\n\nexport class DeleteUserByAccountIdRequest extends RequestDelete<DeleteUserByAccountIdPathParameters, undefined, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"}]\n}\n\nexport class GetCustomDomainRequest extends RequestGet<GetAccountDomainPathParameters, undefined, GetAccountDomainResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"parm\":\"customDomain\",\"routePart\":\"customDomains\",\"sdkPartName\":\"customDomain\"}]\n}\n\nexport class CreateLocationByAccountIdRequest extends RequestPost<CreateLocationByAccountIdPathParameters, undefined, CreateLocationByAccountIdRequestBody, CreateLocationByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"locations\",\"sdkPartName\":\"locations\"}]\n}\n\nexport class GetAdvancedAssetReportByAccountIdRequest extends RequestGet<GetAdvancedAssetReportByAccountIdPathParameters, GetAdvancedAssetReportByAccountIdQueryStringParameters, GetAdvancedAssetReportByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"assets/report/advanced\",\"sdkPartName\":\"advancedAssetsReport\"}]\n}\n\nexport class GetAllAppsByAccountIdRequest extends RequestGet<GetAllAppsByAccountIdPathParameters, GetAllAppsByAccountIdQueryStringParameters, GetAllAppsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"owner/apps\",\"sdkPartName\":\"ownerApps\"}]\n}\n\nexport class CreateInvitationsByAccountIdRequest extends RequestPost<CreateInvitationsByAccountIdPathParameters, undefined, CreateInvitationsByAccountIdRequestBody, CreateInvitationsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"invitations/batch\",\"sdkPartName\":\"invitationsBatch\"}]\n}\n\nexport class GetAdvancedScanReportByAccountIdRequest extends RequestGet<GetAdvancedScanReportByAccountIdPathParameters, GetAdvancedScanReportByAccountIdQueryStringParameters, GetAdvancedScanReportByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"scans/report/advanced\",\"sdkPartName\":\"advancedScansReport\"}]\n}\n\nexport class GetApiKeysByAccountIdRequest extends RequestGet<GetApiKeysByAccountIdPathParameters, GetApiKeysByAccountIdQueryStringParameters, GetApiKeysByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"apikeys\",\"sdkPartName\":\"apikeys\"}]\n}\n\nexport class GetAdvancedContactReportByAccountIdRequest extends RequestGet<GetAdvancedContactReportByAccountIdPathParameters, GetAdvancedContactReportByAccountIdQueryStringParameters, GetAdvancedContactReportByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"contacts/report/advanced\",\"sdkPartName\":\"advancedContactsReport\"}]\n}\n\nexport class CreateQrCodeLogoByAccountRequest extends RequestPost<CreateQrCodeLogoByAccountIdPathParameters, undefined, CreateQrCodeLogoByAccountIdRequestBody, CreateQrCodeLogoByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"qrcodelogos\",\"sdkPartName\":\"qrcodelogos\"}]\n}\n\nexport class GetAssetExportByAccountIdRequest extends RequestPost<GetAssetExportByAccountIdPathParameters, undefined, GetAssetExportByAccountIdRequestBody, GetAssetExportByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"assets/export\",\"sdkPartName\":\"assetsExport\"}]\n}\n\nexport class GetAssetGraphsByAccountIdRequest extends RequestGet<GetAssetGraphsByAccountIdPathParameters, GetAssetGraphsByAccountIdQueryStringParameters, GetAssetGraphsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"assetgraphs\",\"sdkPartName\":\"assetgraphs\"}]\n}\n\nexport class GetAssetsScanCountByAccountIdRequest extends RequestPost<GetAssetsScanCountByAccountIdPathParameters, GetAssetsScanCountByAccountIdQueryStringParameters, GetAssetsScanCountByAccountIdRequestBody, GetAssetsScanCountByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"assets/scans\",\"sdkPartName\":\"assetsScans\"}]\n}\n\nexport class GetAssetTypesByAccountIdRequest extends RequestGet<GetAssetTypesByAccountIdPathParameters, GetAssetTypesByAccountIdQueryStringParameters, GetAssetTypesByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"assettypes\",\"sdkPartName\":\"assettypes\"}]\n}\n\nexport class GetBasicContactReportByAccountIdRequest extends RequestGet<GetBasicContactReportByAccountIdPathParameters, undefined, GetBasicContactReportByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"contacts/report/basic\",\"sdkPartName\":\"basicContactsReport\"}]\n}\n\nexport class GetBatchesByAccountIdRequest extends RequestGet<GetBatchesByAccountIdPathParameters, GetBatchesByAccountIdQueryStringParameters, GetBatchesByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"batch\",\"sdkPartName\":\"batch\"}]\n}\n\nexport class GetConsentByAccountIdRequest extends RequestGet<GetConsentByAccountIdPathParameters, GetConsentByAccountIdQueryStringParameters, GetConsentByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"consent\",\"sdkPartName\":\"consent\"}]\n}\n\nexport class GetBasicAssetReportByAccountIdRequest extends RequestGet<GetBasicAssetReportByAccountIdPathParameters, undefined, GetBasicAssetReportByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"assets/report/basic\",\"sdkPartName\":\"basicAssetsReport\"}]\n}\n\nexport class GetDomainsByAccountIdRequest extends RequestGet<GetDomainsByAccountIdPathParameters, GetDomainsByAccountIdQueryStringParameters, GetDomainsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"customDomains\",\"sdkPartName\":\"customDomains\"}]\n}\n\nexport class GetContactExportByAccountIdRequest extends RequestPost<GetContactExportByAccountIdPathParameters, undefined, GetContactExportByAccountIdRequestBody, GetContactExportByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"contacts/export\",\"sdkPartName\":\"contactsExport\"}]\n}\n\nexport class GetAssetsByAccountIdRequest extends RequestGet<GetAssetsByAccountIdPathParameters, GetAssetsByAccountIdQueryStringParameters, GetAssetsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"assets\",\"sdkPartName\":\"assets\"}]\n}\n\nexport class GetInstalledAppsByAccountIdRequest extends RequestGet<GetInstalledAppsByAccountIdPathParameters, GetInstalledAppsByAccountIdQueryStringParameters, GetInstalledAppsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"apps\",\"sdkPartName\":\"apps\"}]\n}\n\nexport class GetMostScannedAssetsByAccountIdRequest extends RequestGet<GetMostScannedAssetsByAccountIdPathParameters, GetMostScannedAssetsByAccountIdQueryStringParameters, GetMostScannedAssetsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"assets/mostscanned\",\"sdkPartName\":\"assetsMostscanned\"}]\n}\n\nexport class GetPluginsByAccountIdRequest extends RequestGet<GetPluginsByAccountIdPathParameters, undefined, GetPluginsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"plugins\",\"sdkPartName\":\"plugins\"}]\n}\n\nexport class GetJobsByAccountIdRequest extends RequestGet<GetJobsByAccountIdPathParameters, GetJobsByAccountIdQueryStringParameters, GetJobsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"jobs\",\"sdkPartName\":\"jobs\"}]\n}\n\nexport class GetPricePlanByAccountIdRequest extends RequestGet<GetPricePlanByAccountIdPathParameters, undefined, GetPricePlanByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"priceplan\",\"sdkPartName\":\"pricePlan\"}]\n}\n\nexport class GetLocationsByAccountIdRequest extends RequestGet<GetLocationsByAccountIdPathParameters, GetLocationsByAccountIdQueryStringParameters, GetLocationsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"locations\",\"sdkPartName\":\"locations\"}]\n}\n\nexport class GetPrintJobsByAccountIdRequest extends RequestGet<GetPrintJobsByAccountIdPathParameters, GetPrintJobsByAccountIdQueryStringParameters, GetPrintJobsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"printJobs\",\"sdkPartName\":\"printJobs\"}]\n}\n\nexport class GetPrintPageTemplatesByAccountIdRequest extends RequestGet<GetPrintPageTemplatesByAccountIdPathParameters, GetPrintPageTemplatesByAccountIdQueryStringParameters, GetPrintPageTemplatesByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"printPageTemplates\",\"sdkPartName\":\"printPageTemplates\"}]\n}\n\nexport class GetProjectExportByAccountIdRequest extends RequestPost<GetProjectExportByAccountIdPathParameters, undefined, GetProjectExportByAccountIdRequestBody, GetProjectExportByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"projects/export\",\"sdkPartName\":\"projectsExport\"}]\n}\n\nexport class GetProjectsByAccountIdRequest extends RequestGet<GetProjectsByAccountIdPathParameters, GetProjectsByAccountIdQueryStringParameters, GetProjectsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"projects\",\"sdkPartName\":\"projects\"}]\n}\n\nexport class GetPrintStickerTemplatesByAccountIdRequest extends RequestGet<GetPrintStickerTemplatesByAccountIdPathParameters, GetPrintStickerTemplatesByAccountIdQueryStringParameters, GetPrintStickerTemplatesByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"printStickerTemplates\",\"sdkPartName\":\"printStickerTemplates\"}]\n}\n\nexport class GetQrCodeStylingTemplatesByAccountIdRequest extends RequestGet<GetQrCodeStylingTemplatesByAccountIdPathParameters, GetQrCodeStylingTemplatesByAccountIdQueryStringParameters, GetQrCodeStylingTemplatesByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"stylingtemplates\",\"sdkPartName\":\"stylingtemplates\"}]\n}\n\nexport class GetScanDayOfWeekByAccountIdRequest extends RequestGet<GetScanDayOfWeekByAccountIdPathParameters, GetScanDayOfWeekByAccountIdQueryStringParameters, GetScanDayOfWeekByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"scans/dayofweek\",\"sdkPartName\":\"scansDayofweek\"}]\n}\n\nexport class GetQueryableCustomAttributeRequest extends RequestGet<GetQueryableCustomAttributesByAccountIdPathParameters, GetQueryableCustomAttributesByAccountIdQueryStringParameters, GetQueryableCustomAttributesByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"customattributes\",\"sdkPartName\":\"customattributes\"}]\n}\n\nexport class GetScanExportByAccountIdRequest extends RequestPost<GetScanExportByAccountIdPathParameters, undefined, GetScanExportByAccountIdRequestBody, GetScanExportByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"scans/export\",\"sdkPartName\":\"scansExport\"}]\n}\n\nexport class GetQrCodeLogosByAccountIdRequest extends RequestGet<GetQrCodeLogosByAccountIdPathParameters, GetQrCodeLogosByAccountIdQueryStringParameters, GetQrCodeLogosByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"qrcodelogos\",\"sdkPartName\":\"qrcodelogos\"}]\n}\n\nexport class GetScanTimeOfDayByAccountIdRequest extends RequestGet<GetScanTimeOfDayByAccountIdPathParameters, GetScanTimeOfDayByAccountIdQueryStringParameters, GetScanTimeOfDayByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"scans/timeofday\",\"sdkPartName\":\"scansTimeofday\"}]\n}\n\nexport class GetQrCodesByAccountIdRequest extends RequestGet<GetQrCodesByAccountIdPathParameters, GetQrCodesByAccountIdQueryStringParameters, GetQrCodesByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCodes\"}]\n}\n\nexport class GetScanTimelineByAccountIdRequest extends RequestGet<GetScanTimelineByAccountIdPathParameters, GetScanTimelineByAccountIdQueryStringParameters, GetScanTimelineByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"scans/timeline\",\"sdkPartName\":\"scansTimeline\"}]\n}\n\nexport class GetScansByAccountIdRequest extends RequestGet<GetScansByAccountIdPathParameters, GetScansByAccountIdQueryStringParameters, GetScansByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"scans\",\"sdkPartName\":\"scans\"}]\n}\n\nexport class GetUserMediasByAccountIdRequest extends RequestGet<GetUserMediasByAccountIdPathParameters, GetUserMediasByAccountIdQueryStringParameters, GetUserMediasByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedias\"}]\n}\n\nexport class GetUsersByAccountIdRequest extends RequestGet<GetUsersByAccountIdPathParameters, GetUsersByAccountIdQueryStringParameters, GetUsersByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"users\",\"sdkPartName\":\"users\"}]\n}\n\nexport class GetContactsByAccountIdRequest extends RequestGet<GetContactsByAccountIdPathParameters, GetContactsByAccountIdQueryStringParameters, GetContactsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"contacts\",\"sdkPartName\":\"contacts\"}]\n}\n\nexport class CreateCampaignAccountByAccountIdRequest extends RequestPost<SendCampaignInformationByAccountIdPathParameters, undefined, SendCampaignInformationByAccountIdRequestBody, SendCampaignInformationByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"campaignInformation\",\"sdkPartName\":\"campaignInformation\"}]\n}\n\nexport class InstallAppToAccountRequest extends RequestPost<InstallAppToAccountPathParameters, undefined, undefined, InstallAppToAccountResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"parm\":\"appId\",\"routePart\":\"apps\",\"sdkPartName\":\"app\"},{\"routePart\":\"install\",\"sdkPartName\":\"install\"}]\n}\n\nexport class UpdateAccountRequest extends RequestPatch<UpdateAccountPathParameters, undefined, UpdateAccountRequestBody, UpdateAccountResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"}]\n}\n\nexport class RetrieveCampaignStatusByAccountIdRequest extends RequestGet<RetrieveCampaignStatusByAccountIdPathParameters, undefined, RetrieveCampaignStatusByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"campaignInformation\",\"sdkPartName\":\"campaignInformation\"}]\n}\n\nexport class AdvanceStripeClockByAccountIdRequest extends RequestPost<StripeClockPathParameters, undefined, StripeClockRequestBody, StripeClockResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"clock\",\"sdkPartName\":\"clock\"}]\n}\n\nexport class UpdateEngagePricePlanRequest extends RequestPatch<UpdatePricePlanPathParameters, undefined, UpdatePricePlanRequestBody, UpdatePricePlanResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"engagePricePlan\",\"sdkPartName\":\"engagePricePlan\"}]\n}\n\nexport class GetUserByAccountIdRequest extends RequestGet<GetUserByAccountIdPathParameters, undefined, GetUserByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"}]\n}\n\nexport class GetUsersRolesByAccountIdRequest extends RequestGet<GetUsersRolesByAccountIdPathParameters, undefined, GetUsersRolesByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"},{\"routePart\":\"roles\",\"sdkPartName\":\"roles\"}]\n}\n\nexport class UpdateUserByAccountIdRequest extends RequestPatch<UpdateUserByAccountIdPathParameters, undefined, UpdateUserByAccountIdRequestBody, UpdateUserByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"}]\n}\n\nexport class UpdatePricePlanByAccountIdRequest extends RequestPatch<UpdatePricePlanByAccountIdPathParameters, undefined, UpdatePricePlanByAccountIdRequestBody, UpdatePricePlanByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"priceplan\",\"sdkPartName\":\"pricePlan\"}]\n}\n\nexport class UpdateUsersRolesByAccountIdRequest extends RequestPatch<UpdateUsersRolesByAccountIdPathParameters, undefined, UpdateUsersRolesByAccountIdRequestBody, UpdateUsersRolesByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"},{\"routePart\":\"roles\",\"sdkPartName\":\"roles\"}]\n}\n\nexport class UploadQrCodeLogoByAccountRequest extends RequestPost<UploadQrCodeLogoByAccountIdPathParameters, undefined, UploadQrCodeLogoByAccountIdRequestBody, UploadQrCodeLogoByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"qrcodelogos/upload\",\"sdkPartName\":\"qrcodelogosUpload\"}]\n}\n\nexport class ComposeAssetByAssetTypeRequest extends RequestPost<ComposeAssetByAssetTypePathParameters, undefined, ComposeAssetByAssetTypeRequestBody, ComposeAssetByAssetTypeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetTypeId\",\"routePart\":\"assettypes\",\"sdkPartName\":\"assettype\"},{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"}]\n}\n\nexport class GetAppAccountByAppAccountIdRequest extends RequestGet<GetAppAccountPathParameters, undefined, GetAppAccountResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"appAccountId\",\"routePart\":\"appsAccounts\",\"sdkPartName\":\"appsAccount\"}]\n}\n\nexport class DeleteAssetTypeRequest extends RequestDelete<DeleteAssetTypePathParameters, undefined, DeleteAssetTypeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetTypeId\",\"routePart\":\"assettypes\",\"sdkPartName\":\"assettype\"}]\n}\n\nexport class GetAssetTypeCountAtLocationRequest extends RequestGet<GetAssetTypeCountAtLocationPathParameters, undefined, GetAssetTypeCountAtLocationResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetTypeId\",\"routePart\":\"assettypes\",\"sdkPartName\":\"assettype\"},{\"parm\":\"locationId\",\"routePart\":\"locations\",\"sdkPartName\":\"location\"}]\n}\n\nexport class GetMainAccountByAppAccountIdRequest extends RequestGet<GetMainAccountByAppAccountIdPathParameters, undefined, GetMainAccountByAppAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"appAccountId\",\"routePart\":\"appsAccounts\",\"sdkPartName\":\"appsAccount\"},{\"routePart\":\"main\",\"sdkPartName\":\"main\"}]\n}\n\nexport class GetAssetsByAssetTypeRequest extends RequestGet<GetAssetsByAssetTypePathParameters, GetAssetsByAssetTypeQueryStringParameters, GetAssetsByAssetTypeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetTypeId\",\"routePart\":\"assettypes\",\"sdkPartName\":\"assettype\"},{\"routePart\":\"assets\",\"sdkPartName\":\"assets\"}]\n}\n\nexport class CreateAssetByAssetTypeRequest extends RequestPost<CreateAssetByAssetTypePathParameters, undefined, CreateAssetByAssetTypeRequestBody, CreateAssetByAssetTypeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetTypeId\",\"routePart\":\"assettypes\",\"sdkPartName\":\"assettype\"},{\"routePart\":\"assets\",\"sdkPartName\":\"assets\"}]\n}\n\nexport class GetAssetTypeCountsByLocationRequest extends RequestGet<GetLocationCountsForAssetTypePathParameters, GetLocationCountsForAssetTypeQueryStringParameters, GetLocationCountsForAssetTypeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetTypeId\",\"routePart\":\"assettypes\",\"sdkPartName\":\"assettype\"},{\"routePart\":\"locations\",\"sdkPartName\":\"locations\"}]\n}\n\nexport class GetAssetTypeByAssetTypeIdRequest extends RequestGet<GetAssetTypeByAssetTypeIdPathParameters, GetAssetTypeByAssetTypeIdQueryStringParameters, GetAssetTypeByAssetTypeIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetTypeId\",\"routePart\":\"assettypes\",\"sdkPartName\":\"assettype\"}]\n}\n\nexport class UpdateAssetTypeRequest extends RequestPatch<UpdateAssetTypePathParameters, undefined, UpdateAssetTypeRequestBody, UpdateAssetTypeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetTypeId\",\"routePart\":\"assettypes\",\"sdkPartName\":\"assettype\"}]\n}\n\nexport class GetAssetsByBatchIdRequest extends RequestGet<GetAssetsByBatchIdPathParameters, GetAssetsByBatchIdQueryStringParameters, GetAssetsByBatchIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"batchId\",\"routePart\":\"batch\",\"sdkPartName\":\"batch\"},{\"routePart\":\"assets\",\"sdkPartName\":\"assets\"}]\n}\n\nexport class UpdateAssetTypeCountAtLocationRequest extends RequestPatch<UpdateAssetTypeCountAtLocationPathParameters, undefined, UpdateAssetTypeCountAtLocationRequestBody, UpdateAssetTypeCountAtLocationResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetTypeId\",\"routePart\":\"assettypes\",\"sdkPartName\":\"assettype\"},{\"parm\":\"locationId\",\"routePart\":\"locations\",\"sdkPartName\":\"location\"}]\n}\n\nexport class DeleteAssetGraphRequest extends RequestDelete<DeleteAssetGraphPathParameters, undefined, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetGraphId\",\"routePart\":\"assetgraphs\",\"sdkPartName\":\"assetgraph\"}]\n}\n\nexport class GetAssetGraphRequest extends RequestGet<GetAssetGraphPathParameters, undefined, GetAssetGraphResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetGraphId\",\"routePart\":\"assetgraphs\",\"sdkPartName\":\"assetgraph\"}]\n}\n\nexport class UpdateAssetGraphRequest extends RequestPatch<UpdateAssetGraphPathParameters, undefined, UpdateAssetGraphRequestBody, UpdateAssetGraphResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetGraphId\",\"routePart\":\"assetgraphs\",\"sdkPartName\":\"assetgraph\"}]\n}\n\nexport class CreateNeighborsByAssetIdRequest extends RequestPost<CreateNeighborsByAssetIdPathParameters, undefined, CreateNeighborsByAssetIdRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"neighbors\",\"sdkPartName\":\"neighbors\"}]\n}\n\nexport class CreateContactByAssetIdRequest extends RequestPost<CreateContactByAssetIdPathParameters, undefined, CreateContactByAssetIdRequestBody, CreateContactByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"contacts\",\"sdkPartName\":\"contacts\"}]\n}\n\nexport class NameRequest extends RequestGet<GetAssetPathParameters, GetAssetQueryStringParameters, GetAssetResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"}]\n}\n\nexport class GetAssetHistoryRequest extends RequestGet<GetAssetHistoryByAssetIdPathParameters, GetAssetHistoryByAssetIdQueryStringParameters, GetAssetHistoryByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"history\",\"sdkPartName\":\"history\"}]\n}\n\nexport class DeleteAssetRequest extends RequestDelete<DeleteAssetPathParameters, undefined, DeleteAssetResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"}]\n}\n\nexport class GetContactsByAssetIdRequest extends RequestGet<GetContactsByAssetIdPathParameters, GetContactsByAssetIdQueryStringParameters, GetContactsByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"contacts\",\"sdkPartName\":\"contacts\"}]\n}\n\nexport class DeleteNeighborsByAssetIdRequest extends RequestPost<DeleteNeighborsByAssetIdPathParameters, undefined, DeleteNeighborsByAssetIdRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"neighbors/delete\",\"sdkPartName\":\"neighborsDelete\"}]\n}\n\nexport class GetExternalNeighborScanCountByAssetIdRequest extends RequestGet<GetExternalNeighborScanCountByAssetIdPathParameters, GetExternalNeighborScanCountByAssetIdQueryStringParameters, GetExternalNeighborScanCountByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"parm\":\"url\",\"routePart\":\"urls\",\"sdkPartName\":\"url\"}]\n}\n\nexport class GetNeighborsByAssetIdRequest extends RequestGet<GetNeighborsByAssetIdPathParameters, GetNeighborsByAssetIdQueryStringParameters, GetNeighborsByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"neighbors\",\"sdkPartName\":\"neighbors\"}]\n}\n\nexport class CreateQrCodeByAssetIdRequest extends RequestPost<CreateQrCodeByAssetIdPathParameters, undefined, CreateQrCodeByAssetIdRequestBody, CreateQrCodeByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCodes\"}]\n}\n\nexport class GetQrCodesByAssetIdRequest extends RequestGet<GetQrCodesByAssetIdPathParameters, GetQrCodesByAssetIdQueryStringParameters, GetQrCodesByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCodes\"}]\n}\n\nexport class GetScansByAssetIdRequest extends RequestGet<GetScansByAssetIdPathParameters, GetScansByAssetIdQueryStringParameters, GetScansByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"scans\",\"sdkPartName\":\"scans\"}]\n}\n\nexport class GetScanLocationDataByAssetIdRequest extends RequestGet<GetScanLocationDataByAssetIdPathParameters, GetScanLocationDataByAssetIdQueryStringParameters, GetScanLocationDataByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"scans/location\",\"sdkPartName\":\"scansLocation\"}]\n}\n\nexport class CreateQrCodesByAssetIdRequest extends RequestPost<CreateQrCodesByAssetIdPathParameters, undefined, CreateQrCodesByAssetIdRequestBody, CreateQrCodesByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"qracodes\",\"sdkPartName\":\"qracodes\"}]\n}\n\nexport class GetScanExportByAssetIdRequest extends RequestPost<GetScanExportByAssetIdPathParameters, undefined, GetScanExportByAssetIdRequestBody, GetScanExportByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"scans/export\",\"sdkPartName\":\"scansExport\"}]\n}\n\nexport class UpdateAssetRequest extends RequestPatch<UpdateAssetPathParameters, undefined, UpdateAssetRequestBody, UpdateAssetResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"}]\n}\n\nexport class UnlinkContactToAssetRequest extends RequestDelete<UnlinkContactFromAssetPathParameters, undefined, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"}]\n}\n\nexport class LinkContactToAssetRequest extends RequestPost<LinkContactToAssetPathParameters, undefined, LinkContactToAssetRequestBody, LinkContactToAssetResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"}]\n}\n\nexport class GetAllAccountsRequest extends RequestGet<undefined, GetAllAccountsQueryStringParameters, GetAllAccountsResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"care/accounts\",\"sdkPartName\":\"careAccounts\"}]\n}\n\nexport class GetNeighborScanCountByAssetIdRequest extends RequestGet<GetNeighborScanCountByAssetIdPathParameters, GetNeighborScanCountByAssetIdQueryStringParameters, GetNeighborScanCountByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"parm\":\"neighborId\",\"routePart\":\"neighbors\",\"sdkPartName\":\"neighbor\"}]\n}\n\nexport class DeleteContactRequest extends RequestDelete<DeleteContactPathParameters, undefined, DeleteContactResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"}]\n}\n\nexport class GetContactRequest extends RequestGet<GetContactPathParameters, undefined, GetContactResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"}]\n}\n\nexport class GetConsentByContactIdRequest extends RequestGet<GetConsentByContactIdPathParameters, GetConsentByContactIdQueryStringParameters, GetConsentByContactIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"},{\"routePart\":\"consent\",\"sdkPartName\":\"consent\"}]\n}\n\nexport class GetUserMediasByAssetIdRequest extends RequestGet<GetUserMediasByAssetIdPathParameters, GetUserMediasByAssetIdQueryStringParameters, GetUserMediasByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedias\"}]\n}\n\nexport class GetScanExportByContactIdRequest extends RequestPost<GetScanExportByContactIdPathParameters, undefined, GetScanExportByContactIdRequestBody, GetScanExportByContactIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"},{\"routePart\":\"scans/export\",\"sdkPartName\":\"scansExport\"}]\n}\n\nexport class CreateConsentByContactIdRequest extends RequestPost<CreateConsentByContactIdPathParameters, undefined, CreateConsentByContactIdRequestBody, CreateConsentByContactIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"},{\"routePart\":\"consent\",\"sdkPartName\":\"consent\"}]\n}\n\nexport class GetScanLocationDataByContactIdRequest extends RequestGet<GetScanLocationDataByContactIdPathParameters, GetScanLocationDataByContactIdQueryStringParameters, GetScanLocationDataByContactIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"},{\"routePart\":\"scans/location\",\"sdkPartName\":\"scansLocation\"}]\n}\n\nexport class DeleteConsentByContactIdRequest extends RequestDelete<DeleteConsentByContactIdPathParameters, DeleteConsentByContactIdQueryStringParameters, DeleteConsentByContactIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"},{\"routePart\":\"consent\",\"sdkPartName\":\"consent\"}]\n}\n\nexport class GetContactExportByContactIdRequest extends RequestPost<GetContactExportByContactIdPathParameters, undefined, GetContactExportByContactIdRequestBody, GetContactExportByContactIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"},{\"routePart\":\"export\",\"sdkPartName\":\"export\"}]\n}\n\nexport class UpdateContactRequest extends RequestPatch<UpdateContactPathParameters, undefined, UpdateContactRequestBody, UpdateContactResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"}]\n}\n\nexport class CancelDowngradeRequestRequest extends RequestPost<CancelDowngradeRequestPathParameters, undefined, undefined, CancelDowngradeRequestResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"billing/cancelDowngrade\",\"sdkPartName\":\"billingCancelDowngrade\"}]\n}\n\nexport class CancelSubscriptionRequest extends RequestPost<CancelSubscriptionPathParameters, undefined, CancelSubscriptionRequestBody, CancelSubscriptionResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"billing/cancelSubscription\",\"sdkPartName\":\"billingCancelSubscription\"}]\n}\n\nexport class GetAssetsByContactIdRequest extends RequestGet<GetAssetsByContactIdPathParameters, GetAssetsByContactIdQueryStringParameters, GetAssetsByContactIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"},{\"routePart\":\"assets\",\"sdkPartName\":\"assets\"}]\n}\n\nexport class GetScansByContactIdRequest extends RequestGet<GetScansByContactIdPathParameters, undefined, GetScansByContactIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"},{\"routePart\":\"scans\",\"sdkPartName\":\"scans\"}]\n}\n\nexport class ChangeSubscriptionPreviewRequest extends RequestGet<ChangeSubscriptionPreviewPathParameters, ChangeSubscriptionPreviewQueryStringParameters, ChangeSubscriptionPreviewResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"billing/preview/upgradePlan\",\"sdkPartName\":\"upgradePlanBillingPreview\"}]\n}\n\nexport class CreateSetupIntentRequest extends RequestPost<CreateSetupIntentPathParameters, undefined, CreateSetupIntentRequestBody, CreateSetupIntentResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"billing/setupIntent\",\"sdkPartName\":\"billingSetupIntent\"}]\n}\n\nexport class DowngradePlanRequest extends RequestPost<DowngradePlanPathParameters, undefined, DowngradePlanRequestBody, DowngradePlanResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"billing/downgradePlan\",\"sdkPartName\":\"billingDowngradePlan\"}]\n}\n\nexport class GetInvoicesRequest extends RequestGet<GetInvoicesPathParameters, GetInvoicesQueryStringParameters, GetInvoicesResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"billing/invoices\",\"sdkPartName\":\"billingInvoice\"}]\n}\n\nexport class GetCurrentPeriodRequest extends RequestGet<GetCurrentPeriodPathParameters, undefined, GetCurrentPeriodResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"billing/currentPeriod\",\"sdkPartName\":\"billingCurrentPeriod\"}]\n}\n\nexport class GetFileRequest extends RequestGet<GetFilePathParameters, undefined, GetFileResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"fileId\",\"routePart\":\"files\",\"sdkPartName\":\"file\"}]\n}\n\nexport class ChangeSubscriptionRequest extends RequestPost<UpgradePlanPathParameters, undefined, UpgradePlanRequestBody, UpgradePlanResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"billing/upgradePlan\",\"sdkPartName\":\"billingUpgradePlan\"}]\n}\n\nexport class LinkContactToScanRequest extends RequestPost<LinkContactToScanPathParameters, undefined, LinkContactToScanRequestBody, LinkContactToScanResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"},{\"parm\":\"scanId\",\"routePart\":\"scans\",\"sdkPartName\":\"scan\"}]\n}\n\nexport class CreateUserByInvitationIdRequest extends RequestPost<CreateUserByInvitationIdPathParameters, undefined, undefined, CreateUserByInvitationIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"invitationId\",\"routePart\":\"invitations\",\"sdkPartName\":\"invitation\"},{\"routePart\":\"users\",\"sdkPartName\":\"users\"}]\n}\n\nexport class DeleteCustomDomainRequest extends RequestDelete<DeleteCustomDomainPathParameters, undefined, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"customDomain\",\"routePart\":\"customdomains\",\"sdkPartName\":\"customdomain\"}]\n}\n\nexport class ValidateFileRequest extends RequestPost<ValidateFilePathParameters, undefined, undefined, ValidateFileResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"fileId\",\"routePart\":\"files\",\"sdkPartName\":\"file\"},{\"routePart\":\"validate\",\"sdkPartName\":\"validate\"}]\n}\n\nexport class DeleteInvitationRequest extends RequestDelete<DeleteInvitationPathParameters, undefined, DeleteInvitationResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"invitationId\",\"routePart\":\"invitations\",\"sdkPartName\":\"invitation\"}]\n}\n\nexport class UpdateAssetsLocationsRequest extends RequestPatch<BatchUpdateAssetLocationsPathParameters, undefined, BatchUpdateAssetLocationsRequestBody, BatchUpdateAssetLocationsResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"locationId\",\"routePart\":\"locations\",\"sdkPartName\":\"location\"},{\"routePart\":\"assets\",\"sdkPartName\":\"assets\"}]\n}\n\nexport class GetInvitationRequest extends RequestGet<GetInvitationPathParameters, undefined, GetInvitationResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"invitationId\",\"routePart\":\"invitations\",\"sdkPartName\":\"invitation\"}]\n}\n\nexport class DeleteLocationRequest extends RequestDelete<DeleteLocationPathParameters, DeleteLocationQueryStringParameters, DeleteLocationResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"locationId\",\"routePart\":\"locations\",\"sdkPartName\":\"location\"}]\n}\n\nexport class RetryCustomDomainRequest extends RequestPost<RetryCustomDomainPathParameters, undefined, undefined, RetryCustomDomainResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"customDomain\",\"routePart\":\"customdomains\",\"sdkPartName\":\"customdomain\"},{\"routePart\":\"retry\",\"sdkPartName\":\"retry\"}]\n}\n\nexport class GetAssetsByLocationIdRequest extends RequestGet<GetAssetsByLocationPathParameters, GetAssetsByLocationQueryStringParameters, GetAssetsByLocationResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"locationId\",\"routePart\":\"locations\",\"sdkPartName\":\"location\"},{\"routePart\":\"assets\",\"sdkPartName\":\"assets\"}]\n}\n\nexport class GetBillingDetailsRequest extends RequestGet<GetBillingDetailsPathParameters, undefined, GetBillingDetailsResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"billing/details\",\"sdkPartName\":\"billingDetail\"}]\n}\n\nexport class CheckCustomLocatorKeyRangeRequest extends RequestGet<CheckCustomLocatorKeyRangePathParameters, CheckCustomLocatorKeyRangeQueryStringParameters, CheckCustomLocatorKeyRangeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"customDomain\",\"routePart\":\"customdomains\",\"sdkPartName\":\"customdomain\"},{\"routePart\":\"locator/collisions\",\"sdkPartName\":\"locatorCollisions\"}]\n}\n\nexport class GetPricePlansRequest extends RequestGet<undefined, undefined, GetPricePlansResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"pricePlans\",\"sdkPartName\":\"pricePlans\"}]\n}\n\nexport class GetJobRequest extends RequestGet<GetJobPathParameters, undefined, GetJobResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"jobId\",\"routePart\":\"jobs\",\"sdkPartName\":\"job\"}]\n}\n\nexport class InvokePrintJobByJobIdRequest extends RequestPatch<InvokePrintJobByJobIdPathParameters, undefined, undefined, InvokePrintJobByJobIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"printJobId\",\"routePart\":\"printJobs\",\"sdkPartName\":\"printJob\"}]\n}\n\nexport class SendSupportEmailRequest extends RequestPost<undefined, undefined, SendSupportEmailRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"support\",\"sdkPartName\":\"support\"}]\n}\n\nexport class GetQrCodeLinkRequest extends RequestGet<GetQrCodeLinkPathParameters, undefined, GetQrCodeLinkResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"qrCodeLink\",\"routePart\":\"qrcodelinks\",\"sdkPartName\":\"qrcodelink\"}]\n}\n\nexport class GetQrCodeLogoByQrCodeLogoIdRequest extends RequestGet<GetQrCodeLogoByQrCodeLogoIdPathParameters, undefined, GetQrCodeLogoByQrCodeLogoIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"qrCodeLogoId\",\"routePart\":\"qrcodelogos\",\"sdkPartName\":\"qrcodelogo\"}]\n}\n\nexport class DeletePrintJobRequest extends RequestDelete<DeletePrintJobPathParameters, undefined, DeletePrintJobResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"printJobId\",\"routePart\":\"printJobs\",\"sdkPartName\":\"printJob\"}]\n}\n\nexport class UpdateQrCodeLogoByQrCodeLogoIdRequest extends RequestPatch<UpdateQrCodeLogoByQrCodeLogoIdPathParameters, undefined, UpdateQrCodeLogoByQrCodeLogoIdRequestBody, UpdateQrCodeLogoByQrCodeLogoIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"qrCodeLogoId\",\"routePart\":\"qrcodelogos\",\"sdkPartName\":\"qrcodelogo\"}]\n}\n\nexport class CreateContactByScanIdRequest extends RequestPost<CreateContactByScanIdPathParameters, undefined, CreateContactByScanIdRequestBody, CreateContactByScanIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"scanId\",\"routePart\":\"scans\",\"sdkPartName\":\"scan\"},{\"routePart\":\"contacts\",\"sdkPartName\":\"contacts\"}]\n}\n\nexport class DeleteJobRequest extends RequestDelete<DeleteJobPathParameters, undefined, DeleteJobResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"jobId\",\"routePart\":\"jobs\",\"sdkPartName\":\"job\"}]\n}\n\nexport class SaveGeolocationByScanIdRequest extends RequestPatch<SaveGeolocationByScanIdPathParameters, undefined, SaveGeolocationByScanIdRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"scanId\",\"routePart\":\"scans\",\"sdkPartName\":\"scan\"}]\n}\n\nexport class GetScanRequest extends RequestGet<GetScanPathParameters, GetScanQueryStringParameters, GetScanResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"scanId\",\"routePart\":\"scans\",\"sdkPartName\":\"scan\"}]\n}\n\nexport class UpdateScanCustomAttributeRequest extends RequestPatch<UpdateScanCustomAttributePathParameters, undefined, UpdateScanCustomAttributeRequestBody, UpdateScanCustomAttributeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"scanId\",\"routePart\":\"scans\",\"sdkPartName\":\"scan\"},{\"routePart\":\"customAttribute\",\"sdkPartName\":\"customAttribute\"}]\n}\n\nexport class CreateLinkByQrCodeRequest extends RequestPost<CreateLinkByQrCodePathParameters, undefined, CreateLinkByQrCodeRequestBody, CreateLinkByQrCodeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"qrCodeId\",\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCode\"},{\"routePart\":\"links\",\"sdkPartName\":\"links\"}]\n}\n\nexport class DeleteLinkByQrCodeRequest extends RequestDelete<DeleteLinkByQrCodePathParameters, undefined, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"qrCodeId\",\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCode\"},{\"parm\":\"link\",\"routePart\":\"links\",\"sdkPartName\":\"link\"}]\n}\n\nexport class UpdateLocationRequest extends RequestPatch<UpdateLocationPathParameters, undefined, UpdateLocationRequestBody, UpdateLocationResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"locationId\",\"routePart\":\"locations\",\"sdkPartName\":\"location\"}]\n}\n\nexport class GetQrCodeRequest extends RequestGet<GetQrCodePathParameters, GetQrCodeQueryStringParameters, GetQrCodeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"qrCodeId\",\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCode\"}]\n}\n\nexport class UpdateQrCodeRequest extends RequestPatch<UpdateQrCodePathParameters, undefined, UpdateQrCodeRequestBody, UpdateQrCodeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"qrCodeId\",\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCode\"}]\n}\n\nexport class CompleteUserMediaMultipartUploadRequest extends RequestPost<CompleteUserMediaMultipartUploadPathParameters, undefined, CompleteUserMediaMultipartUploadRequestBody, CompleteUserMediaMultipartUploadResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"},{\"routePart\":\"multipart\",\"sdkPartName\":\"multipart\"}]\n}\n\nexport class LinkMediaToAssetRequest extends RequestPost<LinkMediaToAssetPathParameters, undefined, undefined, LinkMediaToAssetResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"},{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"}]\n}\n\nexport class LinkMediaToScanRequest extends RequestPost<LinkMediaToScanPathParameters, undefined, undefined, LinkMediaToScanResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"},{\"parm\":\"scanId\",\"routePart\":\"scans\",\"sdkPartName\":\"scan\"}]\n}\n\nexport class UnlinkMediaToAssetRequest extends RequestDelete<UnlinkMediaToAssetPathParameters, undefined, UnlinkMediaToAssetResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"},{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"}]\n}\n\nexport class LinkMediaToProjectRequest extends RequestPost<LinkMediaToProjectPathParameters, undefined, undefined, LinkMediaToProjectResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"},{\"parm\":\"projectId\",\"routePart\":\"project\",\"sdkPartName\":\"project\"}]\n}\n\nexport class GetMediaRequest extends RequestGet<GetUserMediaPathParameters, undefined, GetUserMediaResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"}]\n}\n\nexport class UnlinkMediaToScanRequest extends RequestDelete<UnlinkMediaToScanPathParameters, undefined, UnlinkMediaToScanResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"},{\"parm\":\"scanId\",\"routePart\":\"scans\",\"sdkPartName\":\"scan\"}]\n}\n\nexport class GetLinksByQrCodeRequest extends RequestGet<GetLinksByQrCodePathParameters, undefined, GetLinksByQrCodeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"qrCodeId\",\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCode\"},{\"routePart\":\"links\",\"sdkPartName\":\"links\"}]\n}\n\nexport class DeletePrintStickerTemplateRequest extends RequestDelete<DeletePrintStickerTemplatePathParameters, undefined, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"printStickerTemplateId\",\"routePart\":\"printStickerTemplates\",\"sdkPartName\":\"printStickerTemplate\"}]\n}\n\nexport class DeletePrintPageTemplateRequest extends RequestDelete<DeletePrintPageTemplatePathParameters, undefined, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"printPageTemplateId\",\"routePart\":\"printPageTemplates\",\"sdkPartName\":\"printPageTemplate\"}]\n}\n\nexport class GetPrintPageTemplateRequest extends RequestGet<GetPrintPageTemplatePathParameters, undefined, GetPrintPageTemplateResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"printPageTemplateId\",\"routePart\":\"printPageTemplates\",\"sdkPartName\":\"printPageTemplate\"}]\n}\n\nexport class DeleteQrCodeStylingTemplateByStylingTemplateIdRequest extends RequestDelete<DeleteStylingTemplateByStylingTemplateIdPathParameters, undefined, DeleteStylingTemplateByStylingTemplateIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"stylingTemplateId\",\"routePart\":\"stylingtemplates\",\"sdkPartName\":\"stylingtemplate\"}]\n}\n\nexport class GetUserRolesRequest extends RequestGet<undefined, undefined, GetUserRolesResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"userroles\",\"sdkPartName\":\"userroles\"}]\n}\n\nexport class GetPrintStickerTemplateRequest extends RequestGet<GetPrintStickerTemplatePathParameters, undefined, GetPrintStickerTemplateResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"printStickerTemplateId\",\"routePart\":\"printStickerTemplates\",\"sdkPartName\":\"printStickerTemplate\"}]\n}\n\nexport class UpdateMediaRequest extends RequestPatch<UpdateUserMediaPathParameters, undefined, UpdateUserMediaRequestBody, UpdateUserMediaResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"}]\n}\n\nexport class UpdateQrCodeStylingTemplateByStylingTemplateIdRequest extends RequestPatch<UpdateStylingTemplateByStylingTemplateIdPathParameters, undefined, UpdateStylingTemplateByStylingTemplateIdRequestBody, UpdateStylingTemplateByStylingTemplateIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"stylingTemplateId\",\"routePart\":\"stylingtemplates\",\"sdkPartName\":\"stylingtemplate\"}]\n}\n\nexport class GetQrCodeStylingTemplateByStylingTemplateIdRequest extends RequestGet<GetStylingTemplateByStylingTemplateIdPathParameters, undefined, GetStylingTemplateByStylingTemplateIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"stylingTemplateId\",\"routePart\":\"stylingtemplates\",\"sdkPartName\":\"stylingtemplate\"}]\n}\n\nexport class CreateAccountByUserIdRequest extends RequestPost<CreateAccountByUserIdPathParameters, undefined, CreateAccountByUserIdRequestBody, CreateAccountByUserIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"},{\"routePart\":\"accounts\",\"sdkPartName\":\"accounts\"}]\n}\n\nexport class GetErrorsByUserIdRequest extends RequestGet<GetErrorsByUserIdPathParameters, GetErrorsByUserIdQueryStringParameters, GetErrorsByUserIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"},{\"routePart\":\"errors\",\"sdkPartName\":\"errors\"}]\n}\n\nexport class GetInvitationsByUserIdRequest extends RequestGet<GetInvitationsByUserIdPathParameters, GetInvitationsByUserIdQueryStringParameters, GetInvitationsByUserIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"},{\"routePart\":\"invitations\",\"sdkPartName\":\"invitations\"}]\n}\n\nexport class UpdatePrintStickerTemplateRequest extends RequestPatch<UpdatePrintStickerTemplatePathParameters, undefined, UpdatePrintStickerTemplateRequestBody, UpdatePrintStickerTemplateResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"printStickerTemplateId\",\"routePart\":\"printStickerTemplates\",\"sdkPartName\":\"printStickerTemplate\"}]\n}\n\nexport class GetUserRequest extends RequestGet<GetUserPathParameters, undefined, GetUserResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"}]\n}\n\nexport class GetUserSettingsByUserIdRequest extends RequestGet<GetUserSettingsPathParameters, undefined, GetUserSettingsResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"},{\"parm\":\"path\",\"routePart\":\"path\",\"sdkPartName\":\"path\"},{\"routePart\":\"settings\",\"sdkPartName\":\"settings\"}]\n}\n\nexport class DeleteQrCodeRequest extends RequestDelete<DeleteQrCodePathParameters, undefined, DeleteQrCodeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"qrCodeId\",\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCode\"}]\n}\n\nexport class UnlinkMediaToProjectRequest extends RequestDelete<UnlinkMediaToProjectPathParameters, undefined, UnlinkMediaToProjectResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"},{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"}]\n}\n\nexport class GetAccountsByUserIdRequest extends RequestGet<GetAccountsByUserIdPathParameters, GetAccountsByUserIdQueryStringParameters, GetAccountsByUserIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"},{\"routePart\":\"accounts\",\"sdkPartName\":\"accounts\"}]\n}\n\nexport class CreateAssetBatchValidationJobByProjectIdRequest extends RequestPost<CreateAssetBatchValidationJobByProjectIdPathParameters, undefined, CreateAssetBatchValidationJobByProjectIdRequestBody, CreateAssetBatchValidationJobByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"jobs/assetbatch/validation\",\"sdkPartName\":\"validationJobsAssetbatch\"}]\n}\n\nexport class UpdatePrintPageTemplateRequest extends RequestPatch<UpdatePrintPageTemplatePathParameters, undefined, UpdatePrintPageTemplateRequestBody, UpdatePrintPageTemplateResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"printPageTemplateId\",\"routePart\":\"printPageTemplates\",\"sdkPartName\":\"printPageTemplate\"}]\n}\n\nexport class CreateAssetCreationJobByProjectIdRequest extends RequestPost<CreateAssetCreationJobByProjectIdPathParameters, undefined, CreateAssetCreationJobByProjectIdRequestBody, CreateAssetCreationJobByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"jobs/assetbatch\",\"sdkPartName\":\"jobsAssetbatch\"}]\n}\n\nexport class CreateAssetCreationPresignedUrlRequest extends RequestPost<CreateAssetCreationPresignedUrlByProjectIdPathParameters, undefined, CreateAssetCreationPresignedUrlByProjectIdRequestBody, CreateAssetCreationPresignedUrlByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"jobs/assetbatch/presignedurl\",\"sdkPartName\":\"presignedurlJobsAssetbatch\"}]\n}\n\nexport class CreateAssetGraphByProjectIdRequest extends RequestPost<CreateAssetGraphByProjectIdPathParameters, undefined, CreateAssetGraphByProjectIdRequestBody, CreateAssetGraphByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"assetgraphs\",\"sdkPartName\":\"assetgraphs\"}]\n}\n\nexport class UpdateUserRequest extends RequestPatch<UpdateUserPathParameters, undefined, UpdateUserRequestBody, UpdateUserResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"}]\n}\n\nexport class CreateSmsTemplateByProjectIdRequest extends RequestPost<CreateSmsTemplateByProjectIdPathParameters, undefined, CreateSmsTemplateByProjectIdRequestBody, CreateSmsTemplateByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"smstemplates\",\"sdkPartName\":\"smsTemplates\"}]\n}\n\nexport class CreateAssetsByProjectIdRequest extends RequestPost<CreateAssetsByProjectIdPathParameters, undefined, CreateAssetsByProjectIdRequestBody, CreateAssetsByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"assets/batch\",\"sdkPartName\":\"assetsBatch\"}]\n}\n\nexport class CreateAssetByProjectIdRequest extends RequestPost<CreateAssetByProjectIdPathParameters, undefined, CreateAssetByProjectIdRequestBody, CreateAssetByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"assets\",\"sdkPartName\":\"assets\"}]\n}\n\nexport class CreateSelfQueuePrintJobByProjectIdRequest extends RequestPost<CreateSelfQueuePrintJobByProjectIdPathParameters, undefined, CreateSelfQueuePrintJobByProjectIdRequestBody, CreateSelfQueuePrintJobByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"selfqueueprint\",\"sdkPartName\":\"selfqueueprint\"}]\n}\n\nexport class CreateTemplatedPrintJobByProjectIdRequest extends RequestPost<CreateTemplatedPrintJobByProjectIdPathParameters, undefined, CreateTemplatedPrintJobByProjectIdRequestBody, CreateTemplatedPrintJobByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"printJobs\",\"sdkPartName\":\"printJobs\"}]\n}\n\nexport class CreateContactByProjectIdRequest extends RequestPost<CreateContactByProjectIdPathParameters, undefined, CreateContactByProjectIdRequestBody, CreateContactByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"contacts\",\"sdkPartName\":\"contacts\"}]\n}\n\nexport class CreateTemplatedPrintPreviewByProjectIdRequest extends RequestPost<CreateTemplatedPrintPreviewByProjectIdPathParameters, undefined, CreateTemplatedPrintPreviewByProjectIdRequestBody, CreateTemplatedPrintPreviewByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"templatedPrint/preview\",\"sdkPartName\":\"templatedPrintPreview\"}]\n}\n\nexport class DeleteContactsByProjectIdRequest extends RequestDelete<DeleteContactsByProjectIdPathParameters, DeleteContactsByProjectIdQueryStringParameters, DeleteContactsByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"contacts/batch\",\"sdkPartName\":\"contactsBatch\"}]\n}\n\nexport class DeleteSmsTemplateByProjectIdRequest extends RequestDelete<DeleteSmsTemplatePathParameters, undefined, DeleteSmsTemplateResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"parm\":\"smsTemplateName\",\"routePart\":\"smstemplates\",\"sdkPartName\":\"smsTemplate\"}]\n}\n\nexport class DeleteProjectRequest extends RequestDelete<DeleteProjectPathParameters, undefined, DeleteProjectResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"}]\n}\n\nexport class GetAdvancedAssetReportByProjectIdRequest extends RequestGet<GetAdvancedAssetReportByProjectIdPathParameters, GetAdvancedAssetReportByProjectIdQueryStringParameters, GetAdvancedAssetReportByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"assets/report/advanced\",\"sdkPartName\":\"advancedAssetsReport\"}]\n}\n\nexport class GetAdvancedContactReportByProjectIdRequest extends RequestGet<GetAdvancedContactReportByProjectIdPathParameters, GetAdvancedContactReportByProjectIdQueryStringParameters, GetAdvancedContactReportByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"contacts/report/advanced\",\"sdkPartName\":\"advancedContactsReport\"}]\n}\n\nexport class GetAdvancedScanReportByProjectIdRequest extends RequestGet<GetAdvancedScanReportByProjectIdPathParameters, GetAdvancedScanReportByProjectIdQueryStringParameters, GetAdvancedScanReportByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"scans/report/advanced\",\"sdkPartName\":\"advancedScansReport\"}]\n}\n\nexport class SetUserSettingsByUserIdRequest extends RequestPatch<SetUserSettingsPathParameters, undefined, SetUserSettingsRequestBody, SetUserSettingsResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"},{\"parm\":\"path\",\"routePart\":\"path\",\"sdkPartName\":\"path\"},{\"routePart\":\"settings\",\"sdkPartName\":\"settings\"}]\n}\n\nexport class GetAssetExportByProjectIdRequest extends RequestPost<GetAssetExportByProjectIdPathParameters, undefined, GetAssetExportByProjectIdRequestBody, GetAssetExportByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"assets/export\",\"sdkPartName\":\"assetsExport\"}]\n}\n\nexport class GetAssetGraphsByProjectIdRequest extends RequestGet<GetAssetGraphsByProjectIdPathParameters, GetAssetGraphsByProjectIdQueryStringParameters, GetAssetGraphsByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"assetgraphs\",\"sdkPartName\":\"assetgraphs\"}]\n}\n\nexport class GetBasicAssetReportByProjectIdRequest extends RequestGet<GetBasicAssetReportByProjectIdPathParameters, undefined, GetBasicAssetReportByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"assets/report/basic\",\"sdkPartName\":\"basicAssetsReport\"}]\n}\n\nexport class GetAssetsByProjectIdRequest extends RequestGet<GetAssetsByProjectIdPathParameters, GetAssetsByProjectIdQueryStringParameters, GetAssetsByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"assets\",\"sdkPartName\":\"assets\"}]\n}\n\nexport class GetBatchesByProjectIdRequest extends RequestGet<GetBatchesByProjectIdPathParameters, GetBatchesByProjectIdQueryStringParameters, GetBatchesByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"batch\",\"sdkPartName\":\"batch\"}]\n}\n\nexport class GetConsentByProjectIdRequest extends RequestGet<GetConsentByProjectIdPathParameters, GetConsentByProjectIdQueryStringParameters, GetConsentByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"consent\",\"sdkPartName\":\"consent\"}]\n}\n\nexport class GetContactExportByProjectIdRequest extends RequestPost<GetContactExportByProjectIdPathParameters, undefined, GetContactExportByProjectIdRequestBody, GetContactExportByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"contacts/export\",\"sdkPartName\":\"contactsExport\"}]\n}\n\nexport class CreateQrCodeByProjectIdRequest extends RequestPost<CreateQrCodeByProjectIdPathParameters, undefined, CreateQrCodeByProjectIdRequestBody, CreateQrCodeByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCodes\"}]\n}\n\nexport class GetContactsByProjectIdRequest extends RequestGet<GetContactsByProjectIdPathParameters, GetContactsByProjectIdQueryStringParameters, GetContactsByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"contacts\",\"sdkPartName\":\"contacts\"}]\n}\n\nexport class CreateContactsByProjectIdRequest extends RequestPost<CreateContactsByProjectIdPathParameters, undefined, CreateContactsByProjectIdRequestBody, CreateContactsByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"contacts/batch\",\"sdkPartName\":\"contactsBatch\"}]\n}\n\nexport class GetMostScannedAssetsByProjectIdRequest extends RequestGet<GetMostScannedAssetsByProjectIdPathParameters, GetMostScannedAssetsByProjectIdQueryStringParameters, GetMostScannedAssetsByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"assets/mostscanned\",\"sdkPartName\":\"assetsMostscanned\"}]\n}\n\nexport class GetBasicContactReportByProjectIdRequest extends RequestGet<GetBasicContactReportByProjectIdPathParameters, undefined, GetBasicContactReportByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"contacts/report/basic\",\"sdkPartName\":\"basicContactsReport\"}]\n}\n\nexport class GetQrCodesByProjectIdRequest extends RequestGet<GetQrCodesByProjectIdPathParameters, GetQrCodesByProjectIdQueryStringParameters, GetQrCodesByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCodes\"}]\n}\n\nexport class GetScanDayOfWeekByProjectIdRequest extends RequestGet<GetScanDayOfWeekByProjectIdPathParameters, GetScanDayOfWeekByProjectIdQueryStringParameters, GetScanDayOfWeekByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"scans/dayofweek\",\"sdkPartName\":\"scansDayofweek\"}]\n}\n\nexport class GetScanTimelineByProjectIdRequest extends RequestGet<GetScanTimelineByProjectIdPathParameters, GetScanTimelineByProjectIdQueryStringParameters, GetScanTimelineByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"scans/timeline\",\"sdkPartName\":\"scansTimeline\"}]\n}\n\nexport class GetScansByProjectIdRequest extends RequestGet<GetScansByProjectIdPathParameters, GetScansByProjectIdQueryStringParameters, GetScansByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"scans\",\"sdkPartName\":\"scans\"}]\n}\n\nexport class GetScanExportByProjectIdRequest extends RequestPost<GetScanExportByProjectIdPathParameters, undefined, GetScanExportByProjectIdRequestBody, GetScanExportByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"scans/export\",\"sdkPartName\":\"scansExport\"}]\n}\n\nexport class GetUserMediasByProjectIdRequest extends RequestGet<GetUserMediasByProjectIdPathParameters, GetUserMediasByProjectIdQueryStringParameters, GetUserMediasByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedias\"}]\n}\n\nexport class GetScanTimeOfDayByProjectIdRequest extends RequestGet<GetScanTimeOfDayByProjectIdPathParameters, GetScanTimeOfDayByProjectIdQueryStringParameters, GetScanTimeOfDayByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"scans/timeofday\",\"sdkPartName\":\"scansTimeofday\"}]\n}\n\nexport class UpdateProjectByProjectIdRequest extends RequestPatch<UpdateProjectByProjectIdPathParameters, undefined, UpdateProjectByProjectIdRequestBody, UpdateProjectByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"}]\n}\n\nexport class GetProjectByProjectIdRequest extends RequestGet<GetProjectByProjectIdPathParameters, undefined, GetProjectByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"}]\n}\n\nexport class ChangePasswordRequest extends RequestPost<undefined, undefined, ChangePasswordRequestBody, ChangePasswordResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"auth/user/password\",\"sdkPartName\":\"passwordAuthUser\"}]\n}\n\nexport class CheckSessionRequest extends RequestGet<undefined, undefined, CheckSessionResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"auth/session\",\"sdkPartName\":\"authSession\"}]\n}\n\nexport class GetSessionRequest extends RequestPost<undefined, undefined, GetSessionRequestBody, GetSessionResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"auth/session\",\"sdkPartName\":\"authSession\"}]\n}\n\nexport class ResendConfirmationRequest extends RequestPost<undefined, undefined, ResendConfirmationRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"auth/user/confirmation\",\"sdkPartName\":\"confirmationAuthUser\"}]\n}\n\nexport class GetSessionRefreshRequest extends RequestPost<undefined, undefined, undefined, GetSessionRefreshUserSessionResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"auth/session/refresh\",\"sdkPartName\":\"refreshAuthSession\"}]\n}\n\nexport class ResetPasswordRequest extends RequestPost<undefined, undefined, ResetPasswordRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"auth/user/reset\",\"sdkPartName\":\"resetAuthUser\"}]\n}\n\nexport class CreateUserRequest extends RequestPost<undefined, undefined, CreateUserRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"auth/user\",\"sdkPartName\":\"authUser\"}]\n}\n\nexport class DeleteSessionRequest extends RequestDelete<undefined, undefined, DeleteSessionResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"auth/session\",\"sdkPartName\":\"authSession\"}]\n}\n\nexport class DeleteMediaRequest extends RequestDelete<DeleteUserMediaPathParameters, undefined, DeleteUserMediaResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"}]\n}\n\n// HANDLER RESOURCE CLASSES\n\nexport class SdkApikeySecretResources extends Resources {\n\n async update(options?: any): Promise<ResetApiKeySecretResponseBody> {\n const request = new ResetApiKeySecretRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetApiKeySecretResponseBody> {\n const request = new GetApiKeySecretRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkApikeyResource extends Resource {\n\n secret(): SdkApikeySecretResources {\n return new SdkApikeySecretResources(this.getSession(), this.pathParameters)\n }\n\n async get(options?: any): Promise<GetApiKeyResponseBody> {\n const request = new GetApiKeyRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateApiKeyRequestBody, options?: any): Promise<UpdateApiKeyResponseBody> {\n const request = new UpdateApiKeyRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAppAccountLoadResources extends Resources {\n\n async create(options?: any): Promise<LoadAppResponseBody> {\n const request = new LoadAppRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAppAccountResource extends Resource {\n\n load(): SdkAppAccountLoadResources {\n return new SdkAppAccountLoadResources(this.getSession(), this.pathParameters)\n }\n\n}\n\nexport class SdkAppResource extends Resource {\n\n account(accountId: string): SdkAppAccountResource {\n return new SdkAppAccountResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n async get(options?: any): Promise<GetAppByAppIdResponseBody> {\n const request = new GetAppByAppIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateAppByAppIdRequestBody, options?: any): Promise<UpdateAppByAppIdResponseBody> {\n const request = new UpdateAppByAppIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAppsResources extends Resources {\n\n async get(queryStringParameters: GetAppsQueryStringParameters, options?: any): Promise<GetAppsResponseBody> {\n const request = new GetAppsRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAppsPublishedResources extends Resources {\n\n async get(queryStringParameters: GetPublishedAppsQueryStringParameters, options?: any): Promise<GetPublishedAppsResponseBody> {\n const request = new GetPublishedAppsRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountAppsResources extends Resources {\n\n async create(requestBody: CreateAppByAccountIdRequestBody, options?: any): Promise<CreateAppByAccountIdResponseBody> {\n const request = new CreateAppRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetInstalledAppsByAccountIdQueryStringParameters, options?: any): Promise<GetInstalledAppsByAccountIdResponseBody> {\n const request = new GetInstalledAppsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountApikeysResources extends Resources {\n\n async create(requestBody: CreateApiKeyByAccountIdRequestBody, options?: any): Promise<CreateApiKeyByAccountIdResponseBody> {\n const request = new CreateApiKeyByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetApiKeysByAccountIdQueryStringParameters, options?: any): Promise<GetApiKeysByAccountIdResponseBody> {\n const request = new GetApiKeysByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountAssettypesResources extends Resources {\n\n async create(requestBody: CreateAssetTypeByAccountIdRequestBody, options?: any): Promise<CreateAssetTypeByAccountIdResponseBody> {\n const request = new CreateAssetTypeByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetAssetTypesByAccountIdQueryStringParameters, options?: any): Promise<GetAssetTypesByAccountIdResponseBody> {\n const request = new GetAssetTypesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountImageUploadResources extends Resources {\n\n async create(requestBody: CreateImageUploadPresignedRequestBody, options?: any): Promise<CreateImageUploadPresignedResponseBody> {\n const request = new CreateImageUploadPresignedUrlRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountUrlSafetiesResources extends Resources {\n\n async create(requestBody: CheckUrlSafetyByAccountIdRequestBody, options?: any): Promise<CheckUrlSafetyByAccountIdResponseBody> {\n const request = new CheckUrlSafetyByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountInvitationsResources extends Resources {\n\n async create(requestBody: CreateInvitationByAccountIdRequestBody, options?: any): Promise<CreateInvitationByAccountIdResponseBody> {\n const request = new CreateInvitationByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountPrintPageTemplatesResources extends Resources {\n\n async create(requestBody: CreatePrintPageTemplateByAccountIdRequestBody, options?: any): Promise<CreatePrintPageTemplateByAccountIdResponseBody> {\n const request = new CreatePrintPageTemplateByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetPrintPageTemplatesByAccountIdQueryStringParameters, options?: any): Promise<GetPrintPageTemplatesByAccountIdResponseBody> {\n const request = new GetPrintPageTemplatesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountStylingtemplatesResources extends Resources {\n\n async create(requestBody: CreateQrCodeStylingTemplateByAccountIdRequestBody, options?: any): Promise<CreateQrCodeStylingTemplateByAccountIdResponseBody> {\n const request = new CreateQrCodeStylingTemplateByAccountRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetQrCodeStylingTemplatesByAccountIdQueryStringParameters, options?: any): Promise<GetQrCodeStylingTemplatesByAccountIdResponseBody> {\n const request = new GetQrCodeStylingTemplatesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountUsermediasPresignedurlmultipartResources extends Resources {\n\n async create(requestBody: CreateUserMediaMultipartPresignedUrlByAccountIdRequestBody, options?: any): Promise<CreateUserMediaMultipartPresignedUrlByAccountIdResponseBody> {\n const request = new CreateUserMediaMultipartPresignedUrlByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountPrintStickerTemplatesResources extends Resources {\n\n async create(requestBody: CreatePrintStickerTemplateByAccountIdRequestBody, options?: any): Promise<CreatePrintStickerTemplateByAccountIdResponseBody> {\n const request = new CreatePrintStickerTemplateByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetPrintStickerTemplatesByAccountIdQueryStringParameters, options?: any): Promise<GetPrintStickerTemplatesByAccountIdResponseBody> {\n const request = new GetPrintStickerTemplatesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountUserConfirmResources extends Resources {\n\n async get(options?: any): Promise<CheckAccountAccessResponseBody> {\n const request = new GetAccountAccessDataRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAccountUserRolesResources extends Resources {\n\n async get(options?: any): Promise<GetUsersRolesByAccountIdResponseBody> {\n const request = new GetUsersRolesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateUsersRolesByAccountIdRequestBody, options?: any): Promise<UpdateUsersRolesByAccountIdResponseBody> {\n const request = new UpdateUsersRolesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountUserResource extends Resource {\n\n confirm(): SdkAccountUserConfirmResources {\n return new SdkAccountUserConfirmResources(this.getSession(), this.pathParameters)\n }\n\n roles(): SdkAccountUserRolesResources {\n return new SdkAccountUserRolesResources(this.getSession(), this.pathParameters)\n }\n\n async delete(options?: any): Promise<any> {\n const request = new DeleteUserByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetUserByAccountIdResponseBody> {\n const request = new GetUserByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateUserByAccountIdRequestBody, options?: any): Promise<UpdateUserByAccountIdResponseBody> {\n const request = new UpdateUserByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountCustomattributesResources extends Resources {\n\n async create(requestBody: CreateQueryableCustomAttributeByAccountIdRequestBody, options?: any): Promise<CreateQueryableCustomAttributeByAccountIdResponseBody> {\n const request = new CreateQueryableCustomAttributeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetQueryableCustomAttributesByAccountIdQueryStringParameters, options?: any): Promise<GetQueryableCustomAttributesByAccountIdResponseBody> {\n const request = new GetQueryableCustomAttributeRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountUsermediasPresignedurlResources extends Resources {\n\n async create(requestBody: CreateUserMediaPresignedUrlByAccountIdRequestBody, options?: any): Promise<CreateUserMediaPresignedUrlByAccountIdResponseBody> {\n const request = new CreateUserMediaPresignedUrlByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountZendeskTicketResources extends Resources {\n\n async create(requestBody: CreateTicketByAccountIdRequestBody, options?: any): Promise<any> {\n const request = new CreateTicketByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountContactsBatchResources extends Resources {\n\n async delete(queryStringParameters: DeleteContactsByAccountIdQueryStringParameters, options?: any): Promise<DeleteContactsByAccountIdResponseBody> {\n const request = new DeleteContactsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountProjectsResources extends Resources {\n\n async create(requestBody: CreateProjectByAccountIdRequestBody, options?: any): Promise<CreateProjectByAccountIdResponseBody> {\n const request = new CreateProjectByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetProjectsByAccountIdQueryStringParameters, options?: any): Promise<GetProjectsByAccountIdResponseBody> {\n const request = new GetProjectsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountCustomDomainResource extends Resource {\n\n async get(options?: any): Promise<GetAccountDomainResponseBody> {\n const request = new GetCustomDomainRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAccountLocationsResources extends Resources {\n\n async create(requestBody: CreateLocationByAccountIdRequestBody, options?: any): Promise<CreateLocationByAccountIdResponseBody> {\n const request = new CreateLocationByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetLocationsByAccountIdQueryStringParameters, options?: any): Promise<GetLocationsByAccountIdResponseBody> {\n const request = new GetLocationsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountAdvancedAssetsReportResources extends Resources {\n\n async get(queryStringParameters: GetAdvancedAssetReportByAccountIdQueryStringParameters, options?: any): Promise<GetAdvancedAssetReportByAccountIdResponseBody> {\n const request = new GetAdvancedAssetReportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountOwnerAppsResources extends Resources {\n\n async get(queryStringParameters: GetAllAppsByAccountIdQueryStringParameters, options?: any): Promise<GetAllAppsByAccountIdResponseBody> {\n const request = new GetAllAppsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountInvitationsBatchResources extends Resources {\n\n async create(requestBody: CreateInvitationsByAccountIdRequestBody, options?: any): Promise<CreateInvitationsByAccountIdResponseBody> {\n const request = new CreateInvitationsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountAdvancedScansReportResources extends Resources {\n\n async get(queryStringParameters: GetAdvancedScanReportByAccountIdQueryStringParameters, options?: any): Promise<GetAdvancedScanReportByAccountIdResponseBody> {\n const request = new GetAdvancedScanReportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountAdvancedContactsReportResources extends Resources {\n\n async get(queryStringParameters: GetAdvancedContactReportByAccountIdQueryStringParameters, options?: any): Promise<GetAdvancedContactReportByAccountIdResponseBody> {\n const request = new GetAdvancedContactReportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountQrcodelogosResources extends Resources {\n\n async create(requestBody: CreateQrCodeLogoByAccountIdRequestBody, options?: any): Promise<CreateQrCodeLogoByAccountIdResponseBody> {\n const request = new CreateQrCodeLogoByAccountRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetQrCodeLogosByAccountIdQueryStringParameters, options?: any): Promise<GetQrCodeLogosByAccountIdResponseBody> {\n const request = new GetQrCodeLogosByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountAssetsExportResources extends Resources {\n\n async create(requestBody: GetAssetExportByAccountIdRequestBody, options?: any): Promise<GetAssetExportByAccountIdResponseBody> {\n const request = new GetAssetExportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountAssetgraphsResources extends Resources {\n\n async get(queryStringParameters: GetAssetGraphsByAccountIdQueryStringParameters, options?: any): Promise<GetAssetGraphsByAccountIdResponseBody> {\n const request = new GetAssetGraphsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountAssetsScansResources extends Resources {\n\n async create(queryStringParameters: GetAssetsScanCountByAccountIdQueryStringParameters, requestBody: GetAssetsScanCountByAccountIdRequestBody, options?: any): Promise<GetAssetsScanCountByAccountIdResponseBody> {\n const request = new GetAssetsScanCountByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, requestBody, options)\n }\n\n}\n\nexport class SdkAccountBasicContactsReportResources extends Resources {\n\n async get(options?: any): Promise<GetBasicContactReportByAccountIdResponseBody> {\n const request = new GetBasicContactReportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAccountBatchResources extends Resources {\n\n async get(queryStringParameters: GetBatchesByAccountIdQueryStringParameters, options?: any): Promise<GetBatchesByAccountIdResponseBody> {\n const request = new GetBatchesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountConsentResources extends Resources {\n\n async get(queryStringParameters: GetConsentByAccountIdQueryStringParameters, options?: any): Promise<GetConsentByAccountIdResponseBody> {\n const request = new GetConsentByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountBasicAssetsReportResources extends Resources {\n\n async get(options?: any): Promise<GetBasicAssetReportByAccountIdResponseBody> {\n const request = new GetBasicAssetReportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAccountCustomDomainsResources extends Resources {\n\n async get(queryStringParameters: GetDomainsByAccountIdQueryStringParameters, options?: any): Promise<GetDomainsByAccountIdResponseBody> {\n const request = new GetDomainsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountContactsExportResources extends Resources {\n\n async create(requestBody: GetContactExportByAccountIdRequestBody, options?: any): Promise<GetContactExportByAccountIdResponseBody> {\n const request = new GetContactExportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountAssetsResources extends Resources {\n\n async get(queryStringParameters: GetAssetsByAccountIdQueryStringParameters, options?: any): Promise<GetAssetsByAccountIdResponseBody> {\n const request = new GetAssetsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountAssetsMostscannedResources extends Resources {\n\n async get(queryStringParameters: GetMostScannedAssetsByAccountIdQueryStringParameters, options?: any): Promise<GetMostScannedAssetsByAccountIdResponseBody> {\n const request = new GetMostScannedAssetsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountPluginsResources extends Resources {\n\n async get(options?: any): Promise<GetPluginsByAccountIdResponseBody> {\n const request = new GetPluginsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAccountJobsResources extends Resources {\n\n async get(queryStringParameters: GetJobsByAccountIdQueryStringParameters, options?: any): Promise<GetJobsByAccountIdResponseBody> {\n const request = new GetJobsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountPricePlanResources extends Resources {\n\n async get(options?: any): Promise<GetPricePlanByAccountIdResponseBody> {\n const request = new GetPricePlanByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdatePricePlanByAccountIdRequestBody, options?: any): Promise<UpdatePricePlanByAccountIdResponseBody> {\n const request = new UpdatePricePlanByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountPrintJobsResources extends Resources {\n\n async get(queryStringParameters: GetPrintJobsByAccountIdQueryStringParameters, options?: any): Promise<GetPrintJobsByAccountIdResponseBody> {\n const request = new GetPrintJobsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountProjectsExportResources extends Resources {\n\n async create(requestBody: GetProjectExportByAccountIdRequestBody, options?: any): Promise<GetProjectExportByAccountIdResponseBody> {\n const request = new GetProjectExportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountScansDayofweekResources extends Resources {\n\n async get(queryStringParameters: GetScanDayOfWeekByAccountIdQueryStringParameters, options?: any): Promise<GetScanDayOfWeekByAccountIdResponseBody> {\n const request = new GetScanDayOfWeekByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountScansExportResources extends Resources {\n\n async create(requestBody: GetScanExportByAccountIdRequestBody, options?: any): Promise<GetScanExportByAccountIdResponseBody> {\n const request = new GetScanExportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountScansTimeofdayResources extends Resources {\n\n async get(queryStringParameters: GetScanTimeOfDayByAccountIdQueryStringParameters, options?: any): Promise<GetScanTimeOfDayByAccountIdResponseBody> {\n const request = new GetScanTimeOfDayByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountQrCodesResources extends Resources {\n\n async get(queryStringParameters: GetQrCodesByAccountIdQueryStringParameters, options?: any): Promise<GetQrCodesByAccountIdResponseBody> {\n const request = new GetQrCodesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountScansTimelineResources extends Resources {\n\n async get(queryStringParameters: GetScanTimelineByAccountIdQueryStringParameters, options?: any): Promise<GetScanTimelineByAccountIdResponseBody> {\n const request = new GetScanTimelineByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountScansResources extends Resources {\n\n async get(queryStringParameters: GetScansByAccountIdQueryStringParameters, options?: any): Promise<GetScansByAccountIdResponseBody> {\n const request = new GetScansByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountUsermediasResources extends Resources {\n\n async get(queryStringParameters: GetUserMediasByAccountIdQueryStringParameters, options?: any): Promise<GetUserMediasByAccountIdResponseBody> {\n const request = new GetUserMediasByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountUsersResources extends Resources {\n\n async get(queryStringParameters: GetUsersByAccountIdQueryStringParameters, options?: any): Promise<GetUsersByAccountIdResponseBody> {\n const request = new GetUsersByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountContactsResources extends Resources {\n\n async get(queryStringParameters: GetContactsByAccountIdQueryStringParameters, options?: any): Promise<GetContactsByAccountIdResponseBody> {\n const request = new GetContactsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountCampaignInformationResources extends Resources {\n\n async create(requestBody: SendCampaignInformationByAccountIdRequestBody, options?: any): Promise<SendCampaignInformationByAccountIdResponseBody> {\n const request = new CreateCampaignAccountByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(options?: any): Promise<RetrieveCampaignStatusByAccountIdResponseBody> {\n const request = new RetrieveCampaignStatusByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAccountAppInstallResources extends Resources {\n\n async create(options?: any): Promise<InstallAppToAccountResponseBody> {\n const request = new InstallAppToAccountRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAccountAppResource extends Resource {\n\n install(): SdkAccountAppInstallResources {\n return new SdkAccountAppInstallResources(this.getSession(), this.pathParameters)\n }\n\n}\n\nexport class SdkAccountClockResources extends Resources {\n\n async create(requestBody: StripeClockRequestBody, options?: any): Promise<StripeClockResponseBody> {\n const request = new AdvanceStripeClockByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountEngagePricePlanResources extends Resources {\n\n async update(requestBody: UpdatePricePlanRequestBody, options?: any): Promise<UpdatePricePlanResponseBody> {\n const request = new UpdateEngagePricePlanRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountQrcodelogosUploadResources extends Resources {\n\n async create(requestBody: UploadQrCodeLogoByAccountIdRequestBody, options?: any): Promise<UploadQrCodeLogoByAccountIdResponseBody> {\n const request = new UploadQrCodeLogoByAccountRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountResource extends Resource {\n\n apps(): SdkAccountAppsResources {\n return new SdkAccountAppsResources(this.getSession(), this.pathParameters)\n }\n\n apikeys(): SdkAccountApikeysResources {\n return new SdkAccountApikeysResources(this.getSession(), this.pathParameters)\n }\n\n assettypes(): SdkAccountAssettypesResources {\n return new SdkAccountAssettypesResources(this.getSession(), this.pathParameters)\n }\n\n imageUpload(): SdkAccountImageUploadResources {\n return new SdkAccountImageUploadResources(this.getSession(), this.pathParameters)\n }\n\n urlSafeties(): SdkAccountUrlSafetiesResources {\n return new SdkAccountUrlSafetiesResources(this.getSession(), this.pathParameters)\n }\n\n invitations(): SdkAccountInvitationsResources {\n return new SdkAccountInvitationsResources(this.getSession(), this.pathParameters)\n }\n\n printPageTemplates(): SdkAccountPrintPageTemplatesResources {\n return new SdkAccountPrintPageTemplatesResources(this.getSession(), this.pathParameters)\n }\n\n stylingtemplates(): SdkAccountStylingtemplatesResources {\n return new SdkAccountStylingtemplatesResources(this.getSession(), this.pathParameters)\n }\n\n usermediasPresignedurlmultipart(): SdkAccountUsermediasPresignedurlmultipartResources {\n return new SdkAccountUsermediasPresignedurlmultipartResources(this.getSession(), this.pathParameters)\n }\n\n printStickerTemplates(): SdkAccountPrintStickerTemplatesResources {\n return new SdkAccountPrintStickerTemplatesResources(this.getSession(), this.pathParameters)\n }\n\n user(userId: string): SdkAccountUserResource {\n return new SdkAccountUserResource(this.getSession(), {...this.pathParameters, userId})\n }\n\n customattributes(): SdkAccountCustomattributesResources {\n return new SdkAccountCustomattributesResources(this.getSession(), this.pathParameters)\n }\n\n usermediasPresignedurl(): SdkAccountUsermediasPresignedurlResources {\n return new SdkAccountUsermediasPresignedurlResources(this.getSession(), this.pathParameters)\n }\n\n zendeskTicket(): SdkAccountZendeskTicketResources {\n return new SdkAccountZendeskTicketResources(this.getSession(), this.pathParameters)\n }\n\n contactsBatch(): SdkAccountContactsBatchResources {\n return new SdkAccountContactsBatchResources(this.getSession(), this.pathParameters)\n }\n\n projects(): SdkAccountProjectsResources {\n return new SdkAccountProjectsResources(this.getSession(), this.pathParameters)\n }\n\n customDomain(customDomain: string): SdkAccountCustomDomainResource {\n return new SdkAccountCustomDomainResource(this.getSession(), {...this.pathParameters, customDomain})\n }\n\n locations(): SdkAccountLocationsResources {\n return new SdkAccountLocationsResources(this.getSession(), this.pathParameters)\n }\n\n advancedAssetsReport(): SdkAccountAdvancedAssetsReportResources {\n return new SdkAccountAdvancedAssetsReportResources(this.getSession(), this.pathParameters)\n }\n\n ownerApps(): SdkAccountOwnerAppsResources {\n return new SdkAccountOwnerAppsResources(this.getSession(), this.pathParameters)\n }\n\n invitationsBatch(): SdkAccountInvitationsBatchResources {\n return new SdkAccountInvitationsBatchResources(this.getSession(), this.pathParameters)\n }\n\n advancedScansReport(): SdkAccountAdvancedScansReportResources {\n return new SdkAccountAdvancedScansReportResources(this.getSession(), this.pathParameters)\n }\n\n advancedContactsReport(): SdkAccountAdvancedContactsReportResources {\n return new SdkAccountAdvancedContactsReportResources(this.getSession(), this.pathParameters)\n }\n\n qrcodelogos(): SdkAccountQrcodelogosResources {\n return new SdkAccountQrcodelogosResources(this.getSession(), this.pathParameters)\n }\n\n assetsExport(): SdkAccountAssetsExportResources {\n return new SdkAccountAssetsExportResources(this.getSession(), this.pathParameters)\n }\n\n assetgraphs(): SdkAccountAssetgraphsResources {\n return new SdkAccountAssetgraphsResources(this.getSession(), this.pathParameters)\n }\n\n assetsScans(): SdkAccountAssetsScansResources {\n return new SdkAccountAssetsScansResources(this.getSession(), this.pathParameters)\n }\n\n basicContactsReport(): SdkAccountBasicContactsReportResources {\n return new SdkAccountBasicContactsReportResources(this.getSession(), this.pathParameters)\n }\n\n batch(): SdkAccountBatchResources {\n return new SdkAccountBatchResources(this.getSession(), this.pathParameters)\n }\n\n consent(): SdkAccountConsentResources {\n return new SdkAccountConsentResources(this.getSession(), this.pathParameters)\n }\n\n basicAssetsReport(): SdkAccountBasicAssetsReportResources {\n return new SdkAccountBasicAssetsReportResources(this.getSession(), this.pathParameters)\n }\n\n customDomains(): SdkAccountCustomDomainsResources {\n return new SdkAccountCustomDomainsResources(this.getSession(), this.pathParameters)\n }\n\n contactsExport(): SdkAccountContactsExportResources {\n return new SdkAccountContactsExportResources(this.getSession(), this.pathParameters)\n }\n\n assets(): SdkAccountAssetsResources {\n return new SdkAccountAssetsResources(this.getSession(), this.pathParameters)\n }\n\n assetsMostscanned(): SdkAccountAssetsMostscannedResources {\n return new SdkAccountAssetsMostscannedResources(this.getSession(), this.pathParameters)\n }\n\n plugins(): SdkAccountPluginsResources {\n return new SdkAccountPluginsResources(this.getSession(), this.pathParameters)\n }\n\n jobs(): SdkAccountJobsResources {\n return new SdkAccountJobsResources(this.getSession(), this.pathParameters)\n }\n\n pricePlan(): SdkAccountPricePlanResources {\n return new SdkAccountPricePlanResources(this.getSession(), this.pathParameters)\n }\n\n printJobs(): SdkAccountPrintJobsResources {\n return new SdkAccountPrintJobsResources(this.getSession(), this.pathParameters)\n }\n\n projectsExport(): SdkAccountProjectsExportResources {\n return new SdkAccountProjectsExportResources(this.getSession(), this.pathParameters)\n }\n\n scansDayofweek(): SdkAccountScansDayofweekResources {\n return new SdkAccountScansDayofweekResources(this.getSession(), this.pathParameters)\n }\n\n scansExport(): SdkAccountScansExportResources {\n return new SdkAccountScansExportResources(this.getSession(), this.pathParameters)\n }\n\n scansTimeofday(): SdkAccountScansTimeofdayResources {\n return new SdkAccountScansTimeofdayResources(this.getSession(), this.pathParameters)\n }\n\n qrCodes(): SdkAccountQrCodesResources {\n return new SdkAccountQrCodesResources(this.getSession(), this.pathParameters)\n }\n\n scansTimeline(): SdkAccountScansTimelineResources {\n return new SdkAccountScansTimelineResources(this.getSession(), this.pathParameters)\n }\n\n scans(): SdkAccountScansResources {\n return new SdkAccountScansResources(this.getSession(), this.pathParameters)\n }\n\n usermedias(): SdkAccountUsermediasResources {\n return new SdkAccountUsermediasResources(this.getSession(), this.pathParameters)\n }\n\n users(): SdkAccountUsersResources {\n return new SdkAccountUsersResources(this.getSession(), this.pathParameters)\n }\n\n contacts(): SdkAccountContactsResources {\n return new SdkAccountContactsResources(this.getSession(), this.pathParameters)\n }\n\n campaignInformation(): SdkAccountCampaignInformationResources {\n return new SdkAccountCampaignInformationResources(this.getSession(), this.pathParameters)\n }\n\n app(appId: string): SdkAccountAppResource {\n return new SdkAccountAppResource(this.getSession(), {...this.pathParameters, appId})\n }\n\n clock(): SdkAccountClockResources {\n return new SdkAccountClockResources(this.getSession(), this.pathParameters)\n }\n\n engagePricePlan(): SdkAccountEngagePricePlanResources {\n return new SdkAccountEngagePricePlanResources(this.getSession(), this.pathParameters)\n }\n\n qrcodelogosUpload(): SdkAccountQrcodelogosUploadResources {\n return new SdkAccountQrcodelogosUploadResources(this.getSession(), this.pathParameters)\n }\n\n async get(options?: any): Promise<GetAccountResponseBody> {\n const request = new GetAccountRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateAccountRequestBody, options?: any): Promise<UpdateAccountResponseBody> {\n const request = new UpdateAccountRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAssettypeAssetResource extends Resource {\n\n async create(requestBody: ComposeAssetByAssetTypeRequestBody, options?: any): Promise<ComposeAssetByAssetTypeResponseBody> {\n const request = new ComposeAssetByAssetTypeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAssettypeLocationResource extends Resource {\n\n async get(options?: any): Promise<GetAssetTypeCountAtLocationResponseBody> {\n const request = new GetAssetTypeCountAtLocationRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateAssetTypeCountAtLocationRequestBody, options?: any): Promise<UpdateAssetTypeCountAtLocationResponseBody> {\n const request = new UpdateAssetTypeCountAtLocationRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAssettypeAssetsResources extends Resources {\n\n async get(queryStringParameters: GetAssetsByAssetTypeQueryStringParameters, options?: any): Promise<GetAssetsByAssetTypeResponseBody> {\n const request = new GetAssetsByAssetTypeRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n async create(requestBody: CreateAssetByAssetTypeRequestBody, options?: any): Promise<CreateAssetByAssetTypeResponseBody> {\n const request = new CreateAssetByAssetTypeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAssettypeLocationsResources extends Resources {\n\n async get(queryStringParameters: GetLocationCountsForAssetTypeQueryStringParameters, options?: any): Promise<GetLocationCountsForAssetTypeResponseBody> {\n const request = new GetAssetTypeCountsByLocationRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssettypeResource extends Resource {\n\n asset(assetId: string): SdkAssettypeAssetResource {\n return new SdkAssettypeAssetResource(this.getSession(), {...this.pathParameters, assetId})\n }\n\n location(locationId: string): SdkAssettypeLocationResource {\n return new SdkAssettypeLocationResource(this.getSession(), {...this.pathParameters, locationId})\n }\n\n assets(): SdkAssettypeAssetsResources {\n return new SdkAssettypeAssetsResources(this.getSession(), this.pathParameters)\n }\n\n locations(): SdkAssettypeLocationsResources {\n return new SdkAssettypeLocationsResources(this.getSession(), this.pathParameters)\n }\n\n async delete(options?: any): Promise<DeleteAssetTypeResponseBody> {\n const request = new DeleteAssetTypeRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(queryStringParameters: GetAssetTypeByAssetTypeIdQueryStringParameters, options?: any): Promise<GetAssetTypeByAssetTypeIdResponseBody> {\n const request = new GetAssetTypeByAssetTypeIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n async update(requestBody: UpdateAssetTypeRequestBody, options?: any): Promise<UpdateAssetTypeResponseBody> {\n const request = new UpdateAssetTypeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAppsAccountMainResources extends Resources {\n\n async get(options?: any): Promise<GetMainAccountByAppAccountIdResponseBody> {\n const request = new GetMainAccountByAppAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAppsAccountResource extends Resource {\n\n main(): SdkAppsAccountMainResources {\n return new SdkAppsAccountMainResources(this.getSession(), this.pathParameters)\n }\n\n async get(options?: any): Promise<GetAppAccountResponseBody> {\n const request = new GetAppAccountByAppAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkBatchAssetsResources extends Resources {\n\n async get(queryStringParameters: GetAssetsByBatchIdQueryStringParameters, options?: any): Promise<GetAssetsByBatchIdResponseBody> {\n const request = new GetAssetsByBatchIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkBatchResource extends Resource {\n\n assets(): SdkBatchAssetsResources {\n return new SdkBatchAssetsResources(this.getSession(), this.pathParameters)\n }\n\n}\n\nexport class SdkAssetgraphResource extends Resource {\n\n async delete(options?: any): Promise<any> {\n const request = new DeleteAssetGraphRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetAssetGraphResponseBody> {\n const request = new GetAssetGraphRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateAssetGraphRequestBody, options?: any): Promise<UpdateAssetGraphResponseBody> {\n const request = new UpdateAssetGraphRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAssetNeighborsResources extends Resources {\n\n async create(requestBody: CreateNeighborsByAssetIdRequestBody, options?: any): Promise<any> {\n const request = new CreateNeighborsByAssetIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetNeighborsByAssetIdQueryStringParameters, options?: any): Promise<GetNeighborsByAssetIdResponseBody> {\n const request = new GetNeighborsByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssetContactsResources extends Resources {\n\n async create(requestBody: CreateContactByAssetIdRequestBody, options?: any): Promise<CreateContactByAssetIdResponseBody> {\n const request = new CreateContactByAssetIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetContactsByAssetIdQueryStringParameters, options?: any): Promise<GetContactsByAssetIdResponseBody> {\n const request = new GetContactsByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssetHistoryResources extends Resources {\n\n async get(queryStringParameters: GetAssetHistoryByAssetIdQueryStringParameters, options?: any): Promise<GetAssetHistoryByAssetIdResponseBody> {\n const request = new GetAssetHistoryRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssetNeighborsDeleteResources extends Resources {\n\n async create(requestBody: DeleteNeighborsByAssetIdRequestBody, options?: any): Promise<any> {\n const request = new DeleteNeighborsByAssetIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAssetUrlResource extends Resource {\n\n async get(queryStringParameters: GetExternalNeighborScanCountByAssetIdQueryStringParameters, options?: any): Promise<GetExternalNeighborScanCountByAssetIdResponseBody> {\n const request = new GetExternalNeighborScanCountByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssetQrCodesResources extends Resources {\n\n async create(requestBody: CreateQrCodeByAssetIdRequestBody, options?: any): Promise<CreateQrCodeByAssetIdResponseBody> {\n const request = new CreateQrCodeByAssetIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetQrCodesByAssetIdQueryStringParameters, options?: any): Promise<GetQrCodesByAssetIdResponseBody> {\n const request = new GetQrCodesByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssetScansResources extends Resources {\n\n async get(queryStringParameters: GetScansByAssetIdQueryStringParameters, options?: any): Promise<GetScansByAssetIdResponseBody> {\n const request = new GetScansByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssetScansLocationResources extends Resources {\n\n async get(queryStringParameters: GetScanLocationDataByAssetIdQueryStringParameters, options?: any): Promise<GetScanLocationDataByAssetIdResponseBody> {\n const request = new GetScanLocationDataByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssetQracodesResources extends Resources {\n\n async create(requestBody: CreateQrCodesByAssetIdRequestBody, options?: any): Promise<CreateQrCodesByAssetIdResponseBody> {\n const request = new CreateQrCodesByAssetIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAssetScansExportResources extends Resources {\n\n async create(requestBody: GetScanExportByAssetIdRequestBody, options?: any): Promise<GetScanExportByAssetIdResponseBody> {\n const request = new GetScanExportByAssetIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAssetContactResource extends Resource {\n\n async delete(options?: any): Promise<any> {\n const request = new UnlinkContactToAssetRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async create(requestBody: LinkContactToAssetRequestBody, options?: any): Promise<LinkContactToAssetResponseBody> {\n const request = new LinkContactToAssetRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAssetNeighborResource extends Resource {\n\n async get(queryStringParameters: GetNeighborScanCountByAssetIdQueryStringParameters, options?: any): Promise<GetNeighborScanCountByAssetIdResponseBody> {\n const request = new GetNeighborScanCountByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssetUsermediasResources extends Resources {\n\n async get(queryStringParameters: GetUserMediasByAssetIdQueryStringParameters, options?: any): Promise<GetUserMediasByAssetIdResponseBody> {\n const request = new GetUserMediasByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssetResource extends Resource {\n\n neighbors(): SdkAssetNeighborsResources {\n return new SdkAssetNeighborsResources(this.getSession(), this.pathParameters)\n }\n\n contacts(): SdkAssetContactsResources {\n return new SdkAssetContactsResources(this.getSession(), this.pathParameters)\n }\n\n history(): SdkAssetHistoryResources {\n return new SdkAssetHistoryResources(this.getSession(), this.pathParameters)\n }\n\n neighborsDelete(): SdkAssetNeighborsDeleteResources {\n return new SdkAssetNeighborsDeleteResources(this.getSession(), this.pathParameters)\n }\n\n url(url: string): SdkAssetUrlResource {\n return new SdkAssetUrlResource(this.getSession(), {...this.pathParameters, url})\n }\n\n qrCodes(): SdkAssetQrCodesResources {\n return new SdkAssetQrCodesResources(this.getSession(), this.pathParameters)\n }\n\n scans(): SdkAssetScansResources {\n return new SdkAssetScansResources(this.getSession(), this.pathParameters)\n }\n\n scansLocation(): SdkAssetScansLocationResources {\n return new SdkAssetScansLocationResources(this.getSession(), this.pathParameters)\n }\n\n qracodes(): SdkAssetQracodesResources {\n return new SdkAssetQracodesResources(this.getSession(), this.pathParameters)\n }\n\n scansExport(): SdkAssetScansExportResources {\n return new SdkAssetScansExportResources(this.getSession(), this.pathParameters)\n }\n\n contact(contactId: string): SdkAssetContactResource {\n return new SdkAssetContactResource(this.getSession(), {...this.pathParameters, contactId})\n }\n\n neighbor(neighborId: string): SdkAssetNeighborResource {\n return new SdkAssetNeighborResource(this.getSession(), {...this.pathParameters, neighborId})\n }\n\n usermedias(): SdkAssetUsermediasResources {\n return new SdkAssetUsermediasResources(this.getSession(), this.pathParameters)\n }\n\n async get(queryStringParameters: GetAssetQueryStringParameters, options?: any): Promise<GetAssetResponseBody> {\n const request = new NameRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n async delete(options?: any): Promise<DeleteAssetResponseBody> {\n const request = new DeleteAssetRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateAssetRequestBody, options?: any): Promise<UpdateAssetResponseBody> {\n const request = new UpdateAssetRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkCareAccountsResources extends Resources {\n\n async get(queryStringParameters: GetAllAccountsQueryStringParameters, options?: any): Promise<GetAllAccountsResponseBody> {\n const request = new GetAllAccountsRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkContactConsentResources extends Resources {\n\n async get(queryStringParameters: GetConsentByContactIdQueryStringParameters, options?: any): Promise<GetConsentByContactIdResponseBody> {\n const request = new GetConsentByContactIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n async create(requestBody: CreateConsentByContactIdRequestBody, options?: any): Promise<CreateConsentByContactIdResponseBody> {\n const request = new CreateConsentByContactIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async delete(queryStringParameters: DeleteConsentByContactIdQueryStringParameters, options?: any): Promise<DeleteConsentByContactIdResponseBody> {\n const request = new DeleteConsentByContactIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkContactScansExportResources extends Resources {\n\n async create(requestBody: GetScanExportByContactIdRequestBody, options?: any): Promise<GetScanExportByContactIdResponseBody> {\n const request = new GetScanExportByContactIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkContactScansLocationResources extends Resources {\n\n async get(queryStringParameters: GetScanLocationDataByContactIdQueryStringParameters, options?: any): Promise<GetScanLocationDataByContactIdResponseBody> {\n const request = new GetScanLocationDataByContactIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkContactExportResources extends Resources {\n\n async create(requestBody: GetContactExportByContactIdRequestBody, options?: any): Promise<GetContactExportByContactIdResponseBody> {\n const request = new GetContactExportByContactIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkContactAssetsResources extends Resources {\n\n async get(queryStringParameters: GetAssetsByContactIdQueryStringParameters, options?: any): Promise<GetAssetsByContactIdResponseBody> {\n const request = new GetAssetsByContactIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkContactScansResources extends Resources {\n\n async get(options?: any): Promise<GetScansByContactIdResponseBody> {\n const request = new GetScansByContactIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkContactScanResource extends Resource {\n\n async create(requestBody: LinkContactToScanRequestBody, options?: any): Promise<LinkContactToScanResponseBody> {\n const request = new LinkContactToScanRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkContactResource extends Resource {\n\n consent(): SdkContactConsentResources {\n return new SdkContactConsentResources(this.getSession(), this.pathParameters)\n }\n\n scansExport(): SdkContactScansExportResources {\n return new SdkContactScansExportResources(this.getSession(), this.pathParameters)\n }\n\n scansLocation(): SdkContactScansLocationResources {\n return new SdkContactScansLocationResources(this.getSession(), this.pathParameters)\n }\n\n export(): SdkContactExportResources {\n return new SdkContactExportResources(this.getSession(), this.pathParameters)\n }\n\n assets(): SdkContactAssetsResources {\n return new SdkContactAssetsResources(this.getSession(), this.pathParameters)\n }\n\n scans(): SdkContactScansResources {\n return new SdkContactScansResources(this.getSession(), this.pathParameters)\n }\n\n scan(scanId: string): SdkContactScanResource {\n return new SdkContactScanResource(this.getSession(), {...this.pathParameters, scanId})\n }\n\n async delete(options?: any): Promise<DeleteContactResponseBody> {\n const request = new DeleteContactRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetContactResponseBody> {\n const request = new GetContactRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateContactRequestBody, options?: any): Promise<UpdateContactResponseBody> {\n const request = new UpdateContactRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkBillingCancelDowngradeResource extends Resource {\n\n async create(options?: any): Promise<CancelDowngradeRequestResponseBody> {\n const request = new CancelDowngradeRequestRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkBillingCancelSubscriptionResource extends Resource {\n\n async create(requestBody: CancelSubscriptionRequestBody, options?: any): Promise<CancelSubscriptionResponseBody> {\n const request = new CancelSubscriptionRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkUpgradePlanBillingPreviewResource extends Resource {\n\n async get(queryStringParameters: ChangeSubscriptionPreviewQueryStringParameters, options?: any): Promise<ChangeSubscriptionPreviewResponseBody> {\n const request = new ChangeSubscriptionPreviewRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkBillingSetupIntentResource extends Resource {\n\n async create(requestBody: CreateSetupIntentRequestBody, options?: any): Promise<CreateSetupIntentResponseBody> {\n const request = new CreateSetupIntentRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkBillingDowngradePlanResource extends Resource {\n\n async create(requestBody: DowngradePlanRequestBody, options?: any): Promise<DowngradePlanResponseBody> {\n const request = new DowngradePlanRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkBillingInvoiceResource extends Resource {\n\n async get(queryStringParameters: GetInvoicesQueryStringParameters, options?: any): Promise<GetInvoicesResponseBody> {\n const request = new GetInvoicesRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkBillingCurrentPeriodResource extends Resource {\n\n async get(options?: any): Promise<GetCurrentPeriodResponseBody> {\n const request = new GetCurrentPeriodRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkFileValidateResources extends Resources {\n\n async create(options?: any): Promise<ValidateFileResponseBody> {\n const request = new ValidateFileRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkFileResource extends Resource {\n\n validate(): SdkFileValidateResources {\n return new SdkFileValidateResources(this.getSession(), this.pathParameters)\n }\n\n async get(options?: any): Promise<GetFileResponseBody> {\n const request = new GetFileRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkBillingUpgradePlanResource extends Resource {\n\n async create(requestBody: UpgradePlanRequestBody, options?: any): Promise<UpgradePlanResponseBody> {\n const request = new ChangeSubscriptionRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkInvitationUsersResources extends Resources {\n\n async create(options?: any): Promise<CreateUserByInvitationIdResponseBody> {\n const request = new CreateUserByInvitationIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkInvitationResource extends Resource {\n\n users(): SdkInvitationUsersResources {\n return new SdkInvitationUsersResources(this.getSession(), this.pathParameters)\n }\n\n async delete(options?: any): Promise<DeleteInvitationResponseBody> {\n const request = new DeleteInvitationRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetInvitationResponseBody> {\n const request = new GetInvitationRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkCustomdomainRetryResources extends Resources {\n\n async create(options?: any): Promise<RetryCustomDomainResponseBody> {\n const request = new RetryCustomDomainRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkCustomdomainLocatorCollisionsResources extends Resources {\n\n async get(queryStringParameters: CheckCustomLocatorKeyRangeQueryStringParameters, options?: any): Promise<CheckCustomLocatorKeyRangeResponseBody> {\n const request = new CheckCustomLocatorKeyRangeRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkCustomdomainResource extends Resource {\n\n retry(): SdkCustomdomainRetryResources {\n return new SdkCustomdomainRetryResources(this.getSession(), this.pathParameters)\n }\n\n locatorCollisions(): SdkCustomdomainLocatorCollisionsResources {\n return new SdkCustomdomainLocatorCollisionsResources(this.getSession(), this.pathParameters)\n }\n\n async delete(options?: any): Promise<any> {\n const request = new DeleteCustomDomainRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkLocationAssetsResources extends Resources {\n\n async update(requestBody: BatchUpdateAssetLocationsRequestBody, options?: any): Promise<BatchUpdateAssetLocationsResponseBody> {\n const request = new UpdateAssetsLocationsRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetAssetsByLocationQueryStringParameters, options?: any): Promise<GetAssetsByLocationResponseBody> {\n const request = new GetAssetsByLocationIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkLocationResource extends Resource {\n\n assets(): SdkLocationAssetsResources {\n return new SdkLocationAssetsResources(this.getSession(), this.pathParameters)\n }\n\n async delete(queryStringParameters: DeleteLocationQueryStringParameters, options?: any): Promise<DeleteLocationResponseBody> {\n const request = new DeleteLocationRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n async update(requestBody: UpdateLocationRequestBody, options?: any): Promise<UpdateLocationResponseBody> {\n const request = new UpdateLocationRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkBillingDetailResource extends Resource {\n\n async get(options?: any): Promise<GetBillingDetailsResponseBody> {\n const request = new GetBillingDetailsRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkPricePlansResources extends Resources {\n\n async get(options?: any): Promise<GetPricePlansResponseBody> {\n const request = new GetPricePlansRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkJobResource extends Resource {\n\n async get(options?: any): Promise<GetJobResponseBody> {\n const request = new GetJobRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async delete(options?: any): Promise<DeleteJobResponseBody> {\n const request = new DeleteJobRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkPrintJobResource extends Resource {\n\n async update(options?: any): Promise<InvokePrintJobByJobIdResponseBody> {\n const request = new InvokePrintJobByJobIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async delete(options?: any): Promise<DeletePrintJobResponseBody> {\n const request = new DeletePrintJobRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkSupportResources extends Resources {\n\n async create(requestBody: SendSupportEmailRequestBody, options?: any): Promise<any> {\n const request = new SendSupportEmailRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkQrcodelinkResource extends Resource {\n\n async get(options?: any): Promise<GetQrCodeLinkResponseBody> {\n const request = new GetQrCodeLinkRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkQrcodelogoResource extends Resource {\n\n async get(options?: any): Promise<GetQrCodeLogoByQrCodeLogoIdResponseBody> {\n const request = new GetQrCodeLogoByQrCodeLogoIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateQrCodeLogoByQrCodeLogoIdRequestBody, options?: any): Promise<UpdateQrCodeLogoByQrCodeLogoIdResponseBody> {\n const request = new UpdateQrCodeLogoByQrCodeLogoIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkScanContactsResources extends Resources {\n\n async create(requestBody: CreateContactByScanIdRequestBody, options?: any): Promise<CreateContactByScanIdResponseBody> {\n const request = new CreateContactByScanIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkScanCustomAttributeResources extends Resources {\n\n async update(requestBody: UpdateScanCustomAttributeRequestBody, options?: any): Promise<UpdateScanCustomAttributeResponseBody> {\n const request = new UpdateScanCustomAttributeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkScanResource extends Resource {\n\n contacts(): SdkScanContactsResources {\n return new SdkScanContactsResources(this.getSession(), this.pathParameters)\n }\n\n customAttribute(): SdkScanCustomAttributeResources {\n return new SdkScanCustomAttributeResources(this.getSession(), this.pathParameters)\n }\n\n async update(requestBody: SaveGeolocationByScanIdRequestBody, options?: any): Promise<any> {\n const request = new SaveGeolocationByScanIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetScanQueryStringParameters, options?: any): Promise<GetScanResponseBody> {\n const request = new GetScanRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkQrCodeLinksResources extends Resources {\n\n async create(requestBody: CreateLinkByQrCodeRequestBody, options?: any): Promise<CreateLinkByQrCodeResponseBody> {\n const request = new CreateLinkByQrCodeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(options?: any): Promise<GetLinksByQrCodeResponseBody> {\n const request = new GetLinksByQrCodeRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkQrCodeLinkResource extends Resource {\n\n async delete(options?: any): Promise<any> {\n const request = new DeleteLinkByQrCodeRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkQrCodeResource extends Resource {\n\n links(): SdkQrCodeLinksResources {\n return new SdkQrCodeLinksResources(this.getSession(), this.pathParameters)\n }\n\n link(link: string): SdkQrCodeLinkResource {\n return new SdkQrCodeLinkResource(this.getSession(), {...this.pathParameters, link})\n }\n\n async get(queryStringParameters: GetQrCodeQueryStringParameters, options?: any): Promise<GetQrCodeResponseBody> {\n const request = new GetQrCodeRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n async update(requestBody: UpdateQrCodeRequestBody, options?: any): Promise<UpdateQrCodeResponseBody> {\n const request = new UpdateQrCodeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async delete(options?: any): Promise<DeleteQrCodeResponseBody> {\n const request = new DeleteQrCodeRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkUsermediaMultipartResources extends Resources {\n\n async create(requestBody: CompleteUserMediaMultipartUploadRequestBody, options?: any): Promise<CompleteUserMediaMultipartUploadResponseBody> {\n const request = new CompleteUserMediaMultipartUploadRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkUsermediaAssetResource extends Resource {\n\n async create(options?: any): Promise<LinkMediaToAssetResponseBody> {\n const request = new LinkMediaToAssetRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async delete(options?: any): Promise<UnlinkMediaToAssetResponseBody> {\n const request = new UnlinkMediaToAssetRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkUsermediaScanResource extends Resource {\n\n async create(options?: any): Promise<LinkMediaToScanResponseBody> {\n const request = new LinkMediaToScanRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async delete(options?: any): Promise<UnlinkMediaToScanResponseBody> {\n const request = new UnlinkMediaToScanRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkUsermediaProjectResource extends Resource {\n\n async create(options?: any): Promise<LinkMediaToProjectResponseBody> {\n const request = new LinkMediaToProjectRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async delete(options?: any): Promise<UnlinkMediaToProjectResponseBody> {\n const request = new UnlinkMediaToProjectRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkUsermediaResource extends Resource {\n\n multipart(): SdkUsermediaMultipartResources {\n return new SdkUsermediaMultipartResources(this.getSession(), this.pathParameters)\n }\n\n asset(assetId: string): SdkUsermediaAssetResource {\n return new SdkUsermediaAssetResource(this.getSession(), {...this.pathParameters, assetId})\n }\n\n scan(scanId: string): SdkUsermediaScanResource {\n return new SdkUsermediaScanResource(this.getSession(), {...this.pathParameters, scanId})\n }\n\n project(projectId: string): SdkUsermediaProjectResource {\n return new SdkUsermediaProjectResource(this.getSession(), {...this.pathParameters, projectId})\n }\n\n async get(options?: any): Promise<GetUserMediaResponseBody> {\n const request = new GetMediaRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateUserMediaRequestBody, options?: any): Promise<UpdateUserMediaResponseBody> {\n const request = new UpdateMediaRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async delete(options?: any): Promise<DeleteUserMediaResponseBody> {\n const request = new DeleteMediaRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkPrintStickerTemplateResource extends Resource {\n\n async delete(options?: any): Promise<any> {\n const request = new DeletePrintStickerTemplateRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetPrintStickerTemplateResponseBody> {\n const request = new GetPrintStickerTemplateRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdatePrintStickerTemplateRequestBody, options?: any): Promise<UpdatePrintStickerTemplateResponseBody> {\n const request = new UpdatePrintStickerTemplateRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkPrintPageTemplateResource extends Resource {\n\n async delete(options?: any): Promise<any> {\n const request = new DeletePrintPageTemplateRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetPrintPageTemplateResponseBody> {\n const request = new GetPrintPageTemplateRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdatePrintPageTemplateRequestBody, options?: any): Promise<UpdatePrintPageTemplateResponseBody> {\n const request = new UpdatePrintPageTemplateRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkStylingtemplateResource extends Resource {\n\n async delete(options?: any): Promise<DeleteStylingTemplateByStylingTemplateIdResponseBody> {\n const request = new DeleteQrCodeStylingTemplateByStylingTemplateIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateStylingTemplateByStylingTemplateIdRequestBody, options?: any): Promise<UpdateStylingTemplateByStylingTemplateIdResponseBody> {\n const request = new UpdateQrCodeStylingTemplateByStylingTemplateIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(options?: any): Promise<GetStylingTemplateByStylingTemplateIdResponseBody> {\n const request = new GetQrCodeStylingTemplateByStylingTemplateIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkUserrolesResources extends Resources {\n\n async get(options?: any): Promise<GetUserRolesResponseBody> {\n const request = new GetUserRolesRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkUserAccountsResources extends Resources {\n\n async create(requestBody: CreateAccountByUserIdRequestBody, options?: any): Promise<CreateAccountByUserIdResponseBody> {\n const request = new CreateAccountByUserIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetAccountsByUserIdQueryStringParameters, options?: any): Promise<GetAccountsByUserIdResponseBody> {\n const request = new GetAccountsByUserIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkUserErrorsResources extends Resources {\n\n async get(queryStringParameters: GetErrorsByUserIdQueryStringParameters, options?: any): Promise<GetErrorsByUserIdResponseBody> {\n const request = new GetErrorsByUserIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkUserInvitationsResources extends Resources {\n\n async get(queryStringParameters: GetInvitationsByUserIdQueryStringParameters, options?: any): Promise<GetInvitationsByUserIdResponseBody> {\n const request = new GetInvitationsByUserIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkUserPathSettingsResources extends Resources {\n\n async get(options?: any): Promise<GetUserSettingsResponseBody> {\n const request = new GetUserSettingsByUserIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: SetUserSettingsRequestBody, options?: any): Promise<SetUserSettingsResponseBody> {\n const request = new SetUserSettingsByUserIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkUserPathResource extends Resource {\n\n settings(): SdkUserPathSettingsResources {\n return new SdkUserPathSettingsResources(this.getSession(), this.pathParameters)\n }\n\n}\n\nexport class SdkUserResource extends Resource {\n\n accounts(): SdkUserAccountsResources {\n return new SdkUserAccountsResources(this.getSession(), this.pathParameters)\n }\n\n errors(): SdkUserErrorsResources {\n return new SdkUserErrorsResources(this.getSession(), this.pathParameters)\n }\n\n invitations(): SdkUserInvitationsResources {\n return new SdkUserInvitationsResources(this.getSession(), this.pathParameters)\n }\n\n path(path: string): SdkUserPathResource {\n return new SdkUserPathResource(this.getSession(), {...this.pathParameters, path})\n }\n\n async get(options?: any): Promise<GetUserResponseBody> {\n const request = new GetUserRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateUserRequestBody, options?: any): Promise<UpdateUserResponseBody> {\n const request = new UpdateUserRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectValidationJobsAssetbatchResources extends Resources {\n\n async create(requestBody: CreateAssetBatchValidationJobByProjectIdRequestBody, options?: any): Promise<CreateAssetBatchValidationJobByProjectIdResponseBody> {\n const request = new CreateAssetBatchValidationJobByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectJobsAssetbatchResources extends Resources {\n\n async create(requestBody: CreateAssetCreationJobByProjectIdRequestBody, options?: any): Promise<CreateAssetCreationJobByProjectIdResponseBody> {\n const request = new CreateAssetCreationJobByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectPresignedurlJobsAssetbatchResources extends Resources {\n\n async create(requestBody: CreateAssetCreationPresignedUrlByProjectIdRequestBody, options?: any): Promise<CreateAssetCreationPresignedUrlByProjectIdResponseBody> {\n const request = new CreateAssetCreationPresignedUrlRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectAssetgraphsResources extends Resources {\n\n async create(requestBody: CreateAssetGraphByProjectIdRequestBody, options?: any): Promise<CreateAssetGraphByProjectIdResponseBody> {\n const request = new CreateAssetGraphByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetAssetGraphsByProjectIdQueryStringParameters, options?: any): Promise<GetAssetGraphsByProjectIdResponseBody> {\n const request = new GetAssetGraphsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectSmsTemplatesResources extends Resources {\n\n async create(requestBody: CreateSmsTemplateByProjectIdRequestBody, options?: any): Promise<CreateSmsTemplateByProjectIdResponseBody> {\n const request = new CreateSmsTemplateByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectAssetsBatchResources extends Resources {\n\n async create(requestBody: CreateAssetsByProjectIdRequestBody, options?: any): Promise<CreateAssetsByProjectIdResponseBody> {\n const request = new CreateAssetsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectAssetsResources extends Resources {\n\n async create(requestBody: CreateAssetByProjectIdRequestBody, options?: any): Promise<CreateAssetByProjectIdResponseBody> {\n const request = new CreateAssetByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetAssetsByProjectIdQueryStringParameters, options?: any): Promise<GetAssetsByProjectIdResponseBody> {\n const request = new GetAssetsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectSelfqueueprintResources extends Resources {\n\n async create(requestBody: CreateSelfQueuePrintJobByProjectIdRequestBody, options?: any): Promise<CreateSelfQueuePrintJobByProjectIdResponseBody> {\n const request = new CreateSelfQueuePrintJobByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectPrintJobsResources extends Resources {\n\n async create(requestBody: CreateTemplatedPrintJobByProjectIdRequestBody, options?: any): Promise<CreateTemplatedPrintJobByProjectIdResponseBody> {\n const request = new CreateTemplatedPrintJobByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectContactsResources extends Resources {\n\n async create(requestBody: CreateContactByProjectIdRequestBody, options?: any): Promise<CreateContactByProjectIdResponseBody> {\n const request = new CreateContactByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetContactsByProjectIdQueryStringParameters, options?: any): Promise<GetContactsByProjectIdResponseBody> {\n const request = new GetContactsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectTemplatedPrintPreviewResources extends Resources {\n\n async create(requestBody: CreateTemplatedPrintPreviewByProjectIdRequestBody, options?: any): Promise<CreateTemplatedPrintPreviewByProjectIdResponseBody> {\n const request = new CreateTemplatedPrintPreviewByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectContactsBatchResources extends Resources {\n\n async delete(queryStringParameters: DeleteContactsByProjectIdQueryStringParameters, options?: any): Promise<DeleteContactsByProjectIdResponseBody> {\n const request = new DeleteContactsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n async create(requestBody: CreateContactsByProjectIdRequestBody, options?: any): Promise<CreateContactsByProjectIdResponseBody> {\n const request = new CreateContactsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectSmsTemplateResource extends Resource {\n\n async delete(options?: any): Promise<DeleteSmsTemplateResponseBody> {\n const request = new DeleteSmsTemplateByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkProjectAdvancedAssetsReportResources extends Resources {\n\n async get(queryStringParameters: GetAdvancedAssetReportByProjectIdQueryStringParameters, options?: any): Promise<GetAdvancedAssetReportByProjectIdResponseBody> {\n const request = new GetAdvancedAssetReportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectAdvancedContactsReportResources extends Resources {\n\n async get(queryStringParameters: GetAdvancedContactReportByProjectIdQueryStringParameters, options?: any): Promise<GetAdvancedContactReportByProjectIdResponseBody> {\n const request = new GetAdvancedContactReportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectAdvancedScansReportResources extends Resources {\n\n async get(queryStringParameters: GetAdvancedScanReportByProjectIdQueryStringParameters, options?: any): Promise<GetAdvancedScanReportByProjectIdResponseBody> {\n const request = new GetAdvancedScanReportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectAssetsExportResources extends Resources {\n\n async create(requestBody: GetAssetExportByProjectIdRequestBody, options?: any): Promise<GetAssetExportByProjectIdResponseBody> {\n const request = new GetAssetExportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectBasicAssetsReportResources extends Resources {\n\n async get(options?: any): Promise<GetBasicAssetReportByProjectIdResponseBody> {\n const request = new GetBasicAssetReportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkProjectBatchResources extends Resources {\n\n async get(queryStringParameters: GetBatchesByProjectIdQueryStringParameters, options?: any): Promise<GetBatchesByProjectIdResponseBody> {\n const request = new GetBatchesByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectConsentResources extends Resources {\n\n async get(queryStringParameters: GetConsentByProjectIdQueryStringParameters, options?: any): Promise<GetConsentByProjectIdResponseBody> {\n const request = new GetConsentByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectContactsExportResources extends Resources {\n\n async create(requestBody: GetContactExportByProjectIdRequestBody, options?: any): Promise<GetContactExportByProjectIdResponseBody> {\n const request = new GetContactExportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectQrCodesResources extends Resources {\n\n async create(requestBody: CreateQrCodeByProjectIdRequestBody, options?: any): Promise<CreateQrCodeByProjectIdResponseBody> {\n const request = new CreateQrCodeByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetQrCodesByProjectIdQueryStringParameters, options?: any): Promise<GetQrCodesByProjectIdResponseBody> {\n const request = new GetQrCodesByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectAssetsMostscannedResources extends Resources {\n\n async get(queryStringParameters: GetMostScannedAssetsByProjectIdQueryStringParameters, options?: any): Promise<GetMostScannedAssetsByProjectIdResponseBody> {\n const request = new GetMostScannedAssetsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectBasicContactsReportResources extends Resources {\n\n async get(options?: any): Promise<GetBasicContactReportByProjectIdResponseBody> {\n const request = new GetBasicContactReportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkProjectScansDayofweekResources extends Resources {\n\n async get(queryStringParameters: GetScanDayOfWeekByProjectIdQueryStringParameters, options?: any): Promise<GetScanDayOfWeekByProjectIdResponseBody> {\n const request = new GetScanDayOfWeekByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectScansTimelineResources extends Resources {\n\n async get(queryStringParameters: GetScanTimelineByProjectIdQueryStringParameters, options?: any): Promise<GetScanTimelineByProjectIdResponseBody> {\n const request = new GetScanTimelineByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectScansResources extends Resources {\n\n async get(queryStringParameters: GetScansByProjectIdQueryStringParameters, options?: any): Promise<GetScansByProjectIdResponseBody> {\n const request = new GetScansByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectScansExportResources extends Resources {\n\n async create(requestBody: GetScanExportByProjectIdRequestBody, options?: any): Promise<GetScanExportByProjectIdResponseBody> {\n const request = new GetScanExportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectUsermediasResources extends Resources {\n\n async get(queryStringParameters: GetUserMediasByProjectIdQueryStringParameters, options?: any): Promise<GetUserMediasByProjectIdResponseBody> {\n const request = new GetUserMediasByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectScansTimeofdayResources extends Resources {\n\n async get(queryStringParameters: GetScanTimeOfDayByProjectIdQueryStringParameters, options?: any): Promise<GetScanTimeOfDayByProjectIdResponseBody> {\n const request = new GetScanTimeOfDayByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectResource extends Resource {\n\n validationJobsAssetbatch(): SdkProjectValidationJobsAssetbatchResources {\n return new SdkProjectValidationJobsAssetbatchResources(this.getSession(), this.pathParameters)\n }\n\n jobsAssetbatch(): SdkProjectJobsAssetbatchResources {\n return new SdkProjectJobsAssetbatchResources(this.getSession(), this.pathParameters)\n }\n\n presignedurlJobsAssetbatch(): SdkProjectPresignedurlJobsAssetbatchResources {\n return new SdkProjectPresignedurlJobsAssetbatchResources(this.getSession(), this.pathParameters)\n }\n\n assetgraphs(): SdkProjectAssetgraphsResources {\n return new SdkProjectAssetgraphsResources(this.getSession(), this.pathParameters)\n }\n\n smsTemplates(): SdkProjectSmsTemplatesResources {\n return new SdkProjectSmsTemplatesResources(this.getSession(), this.pathParameters)\n }\n\n assetsBatch(): SdkProjectAssetsBatchResources {\n return new SdkProjectAssetsBatchResources(this.getSession(), this.pathParameters)\n }\n\n assets(): SdkProjectAssetsResources {\n return new SdkProjectAssetsResources(this.getSession(), this.pathParameters)\n }\n\n selfqueueprint(): SdkProjectSelfqueueprintResources {\n return new SdkProjectSelfqueueprintResources(this.getSession(), this.pathParameters)\n }\n\n printJobs(): SdkProjectPrintJobsResources {\n return new SdkProjectPrintJobsResources(this.getSession(), this.pathParameters)\n }\n\n contacts(): SdkProjectContactsResources {\n return new SdkProjectContactsResources(this.getSession(), this.pathParameters)\n }\n\n templatedPrintPreview(): SdkProjectTemplatedPrintPreviewResources {\n return new SdkProjectTemplatedPrintPreviewResources(this.getSession(), this.pathParameters)\n }\n\n contactsBatch(): SdkProjectContactsBatchResources {\n return new SdkProjectContactsBatchResources(this.getSession(), this.pathParameters)\n }\n\n smsTemplate(smsTemplateName: string): SdkProjectSmsTemplateResource {\n return new SdkProjectSmsTemplateResource(this.getSession(), {...this.pathParameters, smsTemplateName})\n }\n\n advancedAssetsReport(): SdkProjectAdvancedAssetsReportResources {\n return new SdkProjectAdvancedAssetsReportResources(this.getSession(), this.pathParameters)\n }\n\n advancedContactsReport(): SdkProjectAdvancedContactsReportResources {\n return new SdkProjectAdvancedContactsReportResources(this.getSession(), this.pathParameters)\n }\n\n advancedScansReport(): SdkProjectAdvancedScansReportResources {\n return new SdkProjectAdvancedScansReportResources(this.getSession(), this.pathParameters)\n }\n\n assetsExport(): SdkProjectAssetsExportResources {\n return new SdkProjectAssetsExportResources(this.getSession(), this.pathParameters)\n }\n\n basicAssetsReport(): SdkProjectBasicAssetsReportResources {\n return new SdkProjectBasicAssetsReportResources(this.getSession(), this.pathParameters)\n }\n\n batch(): SdkProjectBatchResources {\n return new SdkProjectBatchResources(this.getSession(), this.pathParameters)\n }\n\n consent(): SdkProjectConsentResources {\n return new SdkProjectConsentResources(this.getSession(), this.pathParameters)\n }\n\n contactsExport(): SdkProjectContactsExportResources {\n return new SdkProjectContactsExportResources(this.getSession(), this.pathParameters)\n }\n\n qrCodes(): SdkProjectQrCodesResources {\n return new SdkProjectQrCodesResources(this.getSession(), this.pathParameters)\n }\n\n assetsMostscanned(): SdkProjectAssetsMostscannedResources {\n return new SdkProjectAssetsMostscannedResources(this.getSession(), this.pathParameters)\n }\n\n basicContactsReport(): SdkProjectBasicContactsReportResources {\n return new SdkProjectBasicContactsReportResources(this.getSession(), this.pathParameters)\n }\n\n scansDayofweek(): SdkProjectScansDayofweekResources {\n return new SdkProjectScansDayofweekResources(this.getSession(), this.pathParameters)\n }\n\n scansTimeline(): SdkProjectScansTimelineResources {\n return new SdkProjectScansTimelineResources(this.getSession(), this.pathParameters)\n }\n\n scans(): SdkProjectScansResources {\n return new SdkProjectScansResources(this.getSession(), this.pathParameters)\n }\n\n scansExport(): SdkProjectScansExportResources {\n return new SdkProjectScansExportResources(this.getSession(), this.pathParameters)\n }\n\n usermedias(): SdkProjectUsermediasResources {\n return new SdkProjectUsermediasResources(this.getSession(), this.pathParameters)\n }\n\n scansTimeofday(): SdkProjectScansTimeofdayResources {\n return new SdkProjectScansTimeofdayResources(this.getSession(), this.pathParameters)\n }\n\n async delete(options?: any): Promise<DeleteProjectResponseBody> {\n const request = new DeleteProjectRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateProjectByProjectIdRequestBody, options?: any): Promise<UpdateProjectByProjectIdResponseBody> {\n const request = new UpdateProjectByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(options?: any): Promise<GetProjectByProjectIdResponseBody> {\n const request = new GetProjectByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkPasswordAuthUserResources extends Resources {\n\n async create(requestBody: ChangePasswordRequestBody, options?: any): Promise<ChangePasswordResponseBody> {\n const request = new ChangePasswordRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAuthSessionResources extends Resources {\n\n async get(options?: any): Promise<CheckSessionResponseBody> {\n const request = new CheckSessionRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async create(requestBody: GetSessionRequestBody, options?: any): Promise<GetSessionResponseBody> {\n const request = new GetSessionRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async delete(options?: any): Promise<DeleteSessionResponseBody> {\n const request = new DeleteSessionRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkConfirmationAuthUserResources extends Resources {\n\n async create(requestBody: ResendConfirmationRequestBody, options?: any): Promise<any> {\n const request = new ResendConfirmationRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkRefreshAuthSessionResources extends Resources {\n\n async create(options?: any): Promise<GetSessionRefreshUserSessionResponseBody> {\n const request = new GetSessionRefreshRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkResetAuthUserResources extends Resources {\n\n async create(requestBody: ResetPasswordRequestBody, options?: any): Promise<any> {\n const request = new ResetPasswordRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAuthUserResources extends Resources {\n\n async create(requestBody: CreateUserRequestBody, options?: any): Promise<any> {\n const request = new CreateUserRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkResources extends Resources {\n\n apikey(apiKeyId: string): SdkApikeyResource {\n return new SdkApikeyResource(this.getSession(), {...this.pathParameters, apiKeyId})\n }\n\n app(appId: string): SdkAppResource {\n return new SdkAppResource(this.getSession(), {...this.pathParameters, appId})\n }\n\n apps(): SdkAppsResources {\n return new SdkAppsResources(this.getSession(), this.pathParameters)\n }\n\n appsPublished(): SdkAppsPublishedResources {\n return new SdkAppsPublishedResources(this.getSession(), this.pathParameters)\n }\n\n account(accountId: string): SdkAccountResource {\n return new SdkAccountResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n assettype(assetTypeId: string): SdkAssettypeResource {\n return new SdkAssettypeResource(this.getSession(), {...this.pathParameters, assetTypeId})\n }\n\n appsAccount(appAccountId: string): SdkAppsAccountResource {\n return new SdkAppsAccountResource(this.getSession(), {...this.pathParameters, appAccountId})\n }\n\n batch(batchId: string): SdkBatchResource {\n return new SdkBatchResource(this.getSession(), {...this.pathParameters, batchId})\n }\n\n assetgraph(assetGraphId: string): SdkAssetgraphResource {\n return new SdkAssetgraphResource(this.getSession(), {...this.pathParameters, assetGraphId})\n }\n\n asset(assetId: string): SdkAssetResource {\n return new SdkAssetResource(this.getSession(), {...this.pathParameters, assetId})\n }\n\n careAccounts(): SdkCareAccountsResources {\n return new SdkCareAccountsResources(this.getSession(), this.pathParameters)\n }\n\n contact(contactId: string): SdkContactResource {\n return new SdkContactResource(this.getSession(), {...this.pathParameters, contactId})\n }\n\n billingCancelDowngrade(accountId: string): SdkBillingCancelDowngradeResource {\n return new SdkBillingCancelDowngradeResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n billingCancelSubscription(accountId: string): SdkBillingCancelSubscriptionResource {\n return new SdkBillingCancelSubscriptionResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n upgradePlanBillingPreview(accountId: string): SdkUpgradePlanBillingPreviewResource {\n return new SdkUpgradePlanBillingPreviewResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n billingSetupIntent(accountId: string): SdkBillingSetupIntentResource {\n return new SdkBillingSetupIntentResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n billingDowngradePlan(accountId: string): SdkBillingDowngradePlanResource {\n return new SdkBillingDowngradePlanResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n billingInvoice(accountId: string): SdkBillingInvoiceResource {\n return new SdkBillingInvoiceResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n billingCurrentPeriod(accountId: string): SdkBillingCurrentPeriodResource {\n return new SdkBillingCurrentPeriodResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n file(fileId: string): SdkFileResource {\n return new SdkFileResource(this.getSession(), {...this.pathParameters, fileId})\n }\n\n billingUpgradePlan(accountId: string): SdkBillingUpgradePlanResource {\n return new SdkBillingUpgradePlanResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n invitation(invitationId: string): SdkInvitationResource {\n return new SdkInvitationResource(this.getSession(), {...this.pathParameters, invitationId})\n }\n\n customdomain(customDomain: string): SdkCustomdomainResource {\n return new SdkCustomdomainResource(this.getSession(), {...this.pathParameters, customDomain})\n }\n\n location(locationId: string): SdkLocationResource {\n return new SdkLocationResource(this.getSession(), {...this.pathParameters, locationId})\n }\n\n billingDetail(accountId: string): SdkBillingDetailResource {\n return new SdkBillingDetailResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n pricePlans(): SdkPricePlansResources {\n return new SdkPricePlansResources(this.getSession(), this.pathParameters)\n }\n\n job(jobId: string): SdkJobResource {\n return new SdkJobResource(this.getSession(), {...this.pathParameters, jobId})\n }\n\n printJob(printJobId: string): SdkPrintJobResource {\n return new SdkPrintJobResource(this.getSession(), {...this.pathParameters, printJobId})\n }\n\n support(): SdkSupportResources {\n return new SdkSupportResources(this.getSession(), this.pathParameters)\n }\n\n qrcodelink(qrCodeLink: string): SdkQrcodelinkResource {\n return new SdkQrcodelinkResource(this.getSession(), {...this.pathParameters, qrCodeLink})\n }\n\n qrcodelogo(qrCodeLogoId: string): SdkQrcodelogoResource {\n return new SdkQrcodelogoResource(this.getSession(), {...this.pathParameters, qrCodeLogoId})\n }\n\n scan(scanId: string): SdkScanResource {\n return new SdkScanResource(this.getSession(), {...this.pathParameters, scanId})\n }\n\n qrCode(qrCodeId: string): SdkQrCodeResource {\n return new SdkQrCodeResource(this.getSession(), {...this.pathParameters, qrCodeId})\n }\n\n usermedia(mediaId: string): SdkUsermediaResource {\n return new SdkUsermediaResource(this.getSession(), {...this.pathParameters, mediaId})\n }\n\n printStickerTemplate(printStickerTemplateId: string): SdkPrintStickerTemplateResource {\n return new SdkPrintStickerTemplateResource(this.getSession(), {...this.pathParameters, printStickerTemplateId})\n }\n\n printPageTemplate(printPageTemplateId: string): SdkPrintPageTemplateResource {\n return new SdkPrintPageTemplateResource(this.getSession(), {...this.pathParameters, printPageTemplateId})\n }\n\n stylingtemplate(stylingTemplateId: string): SdkStylingtemplateResource {\n return new SdkStylingtemplateResource(this.getSession(), {...this.pathParameters, stylingTemplateId})\n }\n\n userroles(): SdkUserrolesResources {\n return new SdkUserrolesResources(this.getSession(), this.pathParameters)\n }\n\n user(userId: string): SdkUserResource {\n return new SdkUserResource(this.getSession(), {...this.pathParameters, userId})\n }\n\n project(projectId: string): SdkProjectResource {\n return new SdkProjectResource(this.getSession(), {...this.pathParameters, projectId})\n }\n\n passwordAuthUser(): SdkPasswordAuthUserResources {\n return new SdkPasswordAuthUserResources(this.getSession(), this.pathParameters)\n }\n\n authSession(): SdkAuthSessionResources {\n return new SdkAuthSessionResources(this.getSession(), this.pathParameters)\n }\n\n confirmationAuthUser(): SdkConfirmationAuthUserResources {\n return new SdkConfirmationAuthUserResources(this.getSession(), this.pathParameters)\n }\n\n refreshAuthSession(): SdkRefreshAuthSessionResources {\n return new SdkRefreshAuthSessionResources(this.getSession(), this.pathParameters)\n }\n\n resetAuthUser(): SdkResetAuthUserResources {\n return new SdkResetAuthUserResources(this.getSession(), this.pathParameters)\n }\n\n authUser(): SdkAuthUserResources {\n return new SdkAuthUserResources(this.getSession(), this.pathParameters)\n }\n\n}\n\n","/* eslint-disable no-console */\nimport {Request} from './request'\n\nexport class RequestDelete<PathParameters, QueryParameters, ResponseBody> extends Request {\n async go(\n pathParameters: PathParameters,\n queryParameters: QueryParameters,\n options?: any,\n ): Promise<ResponseBody> {\n try {\n const willAuthorize: boolean = options ? options.willAuthorize : true\n const url = await this.makeUri(pathParameters)\n if (willAuthorize) await this.session.authorize()\n this.debugRequest('delete', url, queryParameters, null, options)\n const axios = await this.session.getAxios()\n const response = await axios.delete(url, {params: queryParameters, ...options})\n this.debugResponse(response)\n return response.data as ResponseBody\n } catch (err) {\n throw this.handleAndDebugErr(err)\n }\n }\n}\n","/* eslint-disable no-console */\nimport {Request} from './request'\n\nexport class RequestGet<PathParameters, QueryParameters, ResponseBody> extends Request {\n async go(\n pathParameters: PathParameters,\n queryParameters?: QueryParameters,\n options?: any,\n ): Promise<ResponseBody> {\n try {\n const willAuthorize: boolean = options ? options.willAuthorize : true\n const url = await this.makeUri(pathParameters)\n if (willAuthorize) await this.session.authorize()\n this.debugRequest('get', url, queryParameters, null, options)\n const axios = await this.session.getAxios()\n const response = await axios.get(url, {params: queryParameters, ...options})\n this.debugResponse(response)\n return response.data as ResponseBody\n } catch (err) {\n throw this.handleAndDebugErr(err)\n }\n }\n}\n","/* eslint-disable no-console */\nimport {Request} from './request'\n\nexport class RequestPatch<PathParameters, QueryParameters, RequestBody, ResponseBody> extends Request {\n async go(\n pathParameters: PathParameters,\n queryParameters?: QueryParameters,\n body?: RequestBody,\n options?: any,\n ): Promise<ResponseBody> {\n try {\n const willAuthorize: boolean = options ? options.willAuthorize : true\n const url = await this.makeUri(pathParameters)\n if (willAuthorize) await this.session.authorize()\n this.debugRequest('patch', url, queryParameters, body, options)\n const axios = await this.session.getAxios()\n const response = await axios.patch(url, body, {params: queryParameters, ...options})\n this.debugResponse(response)\n return response.data! as ResponseBody\n } catch (err) {\n throw this.handleAndDebugErr(err)\n }\n }\n}\n","/* eslint-disable no-console */\nimport {Request} from './request'\n\nexport class RequestPost<PathParameters, QueryParameters, RequestBody, ResponseBody> extends Request {\n async go(\n pathParameters: PathParameters,\n queryParameters?: QueryParameters,\n body?: RequestBody,\n options?: any,\n ): Promise<ResponseBody> {\n try {\n const willAuthorize: boolean = options ? options.willAuthorize : true\n const url = await this.makeUri(pathParameters)\n if (willAuthorize) await this.session.authorize()\n this.debugRequest('post', url, queryParameters, body, options)\n const axios = await this.session.getAxios()\n const response = await axios.post(url, body, {params: queryParameters, ...options})\n this.debugResponse(response)\n return response.data! as ResponseBody\n } catch (err) {\n throw this.handleAndDebugErr(err)\n }\n }\n}\n","import {IOpenscreenSession} from './openscreen-session'\n\nexport class Resources {\n protected session: IOpenscreenSession\n protected pathParameters: any\n\n constructor(session: IOpenscreenSession, pathParameters: any) {\n this.session = session\n this.pathParameters = pathParameters\n }\n\n self() {\n return this\n }\n\n getSession(): IOpenscreenSession {\n return this.session\n }\n}\n\nexport class Resource {\n protected session: IOpenscreenSession\n protected pathParameters: any\n protected id?: string\n\n constructor(session: IOpenscreenSession, pathParameters: any) {\n this.session = session\n this.pathParameters = pathParameters\n }\n\n getSession(): IOpenscreenSession {\n return this.session\n }\n}\n","\nimport axios, {AxiosInstance} from 'axios'\nimport { wrapper } from 'axios-cookiejar-support'\nimport { CookieJar } from 'tough-cookie'\n\nimport {CreateUserRequestBody, SdkResources, User} from './sdk'\nimport {ICloudConfig} from './cloud-config'\nimport {IConfig} from './config'\nimport {IOpenscreenSession} from './openscreen-session'\n\nconst ProdConfigurationPath = 'internal-JG0adajZUHU'\n\nasync function getCloudConfig(pathToConfig: string): Promise<ICloudConfig> {\n const thisAxios = axios.create({\n baseURL: 'https://config.openscreen.com',\n timeout: 25000,\n responseType: 'json',\n maxContentLength: 10 * 1024,\n maxBodyLength: 10 * 1024,\n maxRedirects: 1,\n decompress: true,\n })\n const response = await thisAxios.get(`${pathToConfig}.json`).catch((err: {message: any}) => {\n throw new Error(`Openscreen: unable to load cloud configuration '${pathToConfig}': ${err.message}`)\n })\n const {data} = response\n return data as ICloudConfig\n}\n\nclass NullSession implements IOpenscreenSession {\n public debugConfig = false\n public debugAuth = false\n public debugRequest = false\n public debugResponse = false\n public debugError = false\n public debugQuery = false\n public debugOptions = false\n public exp = 0\n\n getConfig(): IConfig {\n throw Error('no session')\n }\n\n getCloudConfig(): Promise<ICloudConfig> {\n throw Error('no session')\n }\n\n getAxios(): Promise<AxiosInstance> {\n throw Error('no session')\n }\n\n async authorize(): Promise<void> {\n throw Error('no session')\n }\n\n getUser(): User | undefined {\n return undefined\n }\n\n async getSignedInUser(): Promise<User> {\n throw Error('no session')\n }\n\n async createUser(): Promise<boolean> {\n throw Error('no session')\n }\n\n async changePassword(): Promise<boolean> {\n throw Error('no session')\n }\n\n async signOut(): Promise<void> {\n throw Error('no session')\n }\n}\n\nexport class Openscreen extends SdkResources implements IOpenscreenSession {\n protected _config?: IConfig\n protected cloudConfigName?: string\n protected cloudConfig?: Promise<ICloudConfig>\n protected axios?: AxiosInstance\n protected _user: User | undefined\n public debugConfig: boolean = false\n public debugAuth: boolean = false\n public debugRequest: boolean = false\n public debugResponse: boolean = false\n public debugError: boolean = false\n public debugQuery: boolean = false\n public debugOptions: boolean = false\n public exp: number\n\n constructor() {\n super(new NullSession(), {})\n this.exp = 0\n let {OS_DEBUG} = process.env\n if (OS_DEBUG) {\n console.log(`OS_DEBUG=${OS_DEBUG}`)\n OS_DEBUG = OS_DEBUG.toLowerCase()\n let debug\n switch (OS_DEBUG) {\n case 'all':\n this.debugConfig = true\n this.debugAuth = true\n this.debugRequest = true\n this.debugResponse = true\n this.debugError = true\n this.debugQuery = true\n this.debugOptions = true\n break\n case 'none':\n case 'off':\n case 'false':\n case '':\n this.debugConfig = false\n this.debugAuth = false\n this.debugRequest = false\n this.debugResponse = false\n this.debugError = false\n this.debugQuery = false\n this.debugOptions = false\n break\n default:\n debug = OS_DEBUG.split(',')\n this.debugConfig = debug.includes('config')\n this.debugAuth = debug.includes('auth')\n this.debugRequest = debug.includes('request')\n this.debugResponse = debug.includes('response')\n this.debugError = debug.includes('error')\n this.debugQuery = debug.includes('query')\n this.debugOptions = debug.includes('options')\n if (\n !(\n this.debugConfig ||\n this.debugAuth ||\n this.debugRequest ||\n this.debugResponse ||\n this.debugError ||\n this.debugQuery ||\n this.debugOptions\n )\n ) {\n console.warn(`Openscreen: OS_DEBUG environment var has invalid value: '${process.env.OS_DEBUG}'`)\n }\n break\n }\n }\n }\n\n getSession() {\n return this\n }\n\n config(config: IConfig): Openscreen {\n if (this._config) {\n throw Error('Openscreen: client is already configured')\n }\n if (config.key) {\n if (!config.secret) {\n throw Error('Openscreen: invalid config, secret is missing')\n }\n } else {\n throw Error('Openscreen: invalid config, provide API key and secret, or email and password')\n }\n if (typeof config.environment === 'string') {\n this.cloudConfigName = config.environment\n } else if (typeof config.environment === 'object') {\n this.cloudConfig = Promise.resolve(config.environment)\n } else {\n this.cloudConfigName = ProdConfigurationPath\n }\n // eslint-disable-next-line no-param-reassign\n this._config = config\n return this\n }\n\n getConfig(): IConfig {\n if (!this._config) {\n throw Error('Openscreen: client must be configured before accessing resources')\n }\n return this._config\n }\n\n async getSignedInUser(): Promise<User> {\n await this.authorize()\n return this._user!\n }\n\n async createUser(requestBody: CreateUserRequestBody): Promise<boolean> {\n return new SdkResources(this, {}).authUser().create(requestBody, { willAuthorize: false })\n }\n\n async checkSession(): Promise<boolean> {\n if (this.debugAuth) console.info(`Openscreen AUTH: checking session`)\n await this.authSession().get({ willAuthorize: false })\n return true\n }\n\n async authorize(): Promise<void> {\n\n // CURRENT ACCESS TOKEN IS STILL VALID\n if (this.exp > new Date().getTime()) {\n if (this.debugAuth) console.info(`Openscreen AUTH: already authorized '${this._user.email}' until expiry=${this.exp}`)\n return\n }\n\n // THERE IS AN ACCESS TOKEN BUT WE NEED TO REFRESH IT\n if (this.exp !== 0) {\n if (this.debugAuth) console.info(`Openscreen AUTH: refreshing '${this._user.email}'`)\n const res = await this.refreshAuthSession().create({ willAuthorize: false })\n const {expires} = res\n this.exp = Number(expires)\n if (this.debugAuth) console.info(`Openscreen AUTH: authorized '${this._user.email}' until expiry=${expires}`)\n return\n }\n\n // if code reaches here that means the exp == 0 and it's a brand new session so we gotta login\n const config = this.getConfig()\n if (this.debugConfig) {\n const c = {...config}\n if (c.secret) c.secret = '*'.repeat(c.secret.length)\n console.debug(`Openscreen CONFIG:`, c)\n }\n\n const email = config.key!\n const password = config.secret!\n if (this.debugAuth) console.info(`Openscreen AUTH: authorizing '${email}'`)\n const res = await this.authSession().create({ email, password }, { willAuthorize: false })\n const {expires, user} = res\n if (user) {\n this._user = user\n } else {\n this._user = {\n email,\n firstName: '',\n lastName: '',\n middleName: '',\n userId: '00000000-0000-0000-0000-000000000000',\n }\n }\n this.exp = Number(expires)\n if (this.debugAuth) console.info(`Openscreen AUTH: authorized '${email}' until expiry=${expires}`)\n }\n\n getUser(): User | undefined {\n return this._user\n }\n\n async getCloudConfig(): Promise<ICloudConfig> {\n if (!this.cloudConfig) {\n if (!this.cloudConfigName) {\n throw Error('Openscreen: environment name missing')\n }\n this.cloudConfig = getCloudConfig(this.cloudConfigName)\n }\n return this.cloudConfig\n }\n\n async getAxios(): Promise<AxiosInstance> {\n if (this.axios) return this.axios\n const jar = new CookieJar()\n const cloudConfig = await this.getCloudConfig()\n if (cloudConfig.axios) {\n this.axios = wrapper(axios.create({ ...cloudConfig.axios, jar }))\n } else {\n this.axios = wrapper(axios.create({\n decompress: true,\n jar,\n maxBodyLength: 1024 * 1024,\n maxContentLength: 1024 * 1024,\n maxRedirects: 1,\n responseType: 'json',\n timeout: 25000,\n }))\n }\n return this.axios\n }\n\n async changePassword(oldPassword: string, newPassword: string): Promise<boolean> {\n await this.passwordAuthUser().create({\n password: oldPassword,\n newPassword,\n }, { willAuthorize: false })\n return true\n }\n\n async signOut() {\n await this.authSession().delete({ willAuthorize: false })\n this._user = {\n email: '',\n firstName: '',\n lastName: '',\n middleName: '',\n userId: '00000000-0000-0000-0000-000000000000',\n }\n this.exp = 0\n }\n}\n"],"names":["AccountDomainTypes","AccountSortingTypes","AccountStatus","AccountType","AccountUserRole","AssetByAssetTypeSortingTypes","AssetCreationFileTypes","AssetSortingTypes","AssetTypeSortingTypes","AssetTypeUsabilityState","AuthMessageId","AuthTokenScope","CampaignUseCaseCategory","ConsentStatus","ConsentType","ContactAssetSortingTypes","ContactSortingTypes","DomainStatus","FieldType","InternalProductName","InvoiceStatus","JobStatus","JobType","Label","LocationSortingTypes","OpenscreenEmails","Permission","PluginNameTypes","PluginStatus","PricePlanName","PricePlanPaymentPeriod","PricePlanReporting","PrintFormat","PrintMode","PrintOrientation","PrintTemplate","PrintUnit","ProjectSortingTypes","ProjectStatus","QrCodeCornerDotTypes","QrCodeCornerSquareTypes","QrCodeDotTypes","QrCodeDynamicRedirectType","QrCodeErrorCorrectionLevel","QrCodeGradientTypes","QrCodeIntentType","QrCodeLocatorKeyType","QrCodeSortingTypes","QrCodeStatus","QrCodeType","QueryConditions","ScanTimelineOptions","StickerShape","TagActions","TagStates","UserCredentialsStatus","UserGroups","UserMediaFileTypes","UserMediaSortingTypes","Request","session","routeSegments","this","_proto","prototype","makeUri","pathParameters","_this","Promise","resolve","getCloudConfig","then","cloudConfig","urlParts","endpoint","replace","forEach","segment","push","routePart","parm","value","Error","join","e","reject","debugRequest","httpMethod","url","queryParameters","body","options","console","debug","toUpperCase","JSON","stringify","debugQuery","debugOptions","debugResponse","response","data","handleAndDebugErr","err","debugError","error","_unused","RequestDelete","_Request","apply","arguments","_inheritsLoose","go","willAuthorize","_temp2","getAxios","axios","_extends","params","_temp","authorize","_catch","RequestGet","get","RequestPatch","patch","RequestPost","post","Resources","self","getSession","Resource","id","AuthTypes","EntitySources","UserSettingsDomain","GetApiKeyRequest","_RequestGet","_len","length","args","Array","_key","call","concat","sdkPartName","UpdateApiKeyRequest","_RequestPatch","_len2","_this2","_key2","GetAppByAppIdRequest","_RequestGet2","_this3","_len3","_key3","GetAppsRequest","_RequestGet3","_len4","_this4","_key4","GetPublishedAppsRequest","_RequestGet4","_this5","_len5","_key5","LoadAppRequest","_RequestPost","_this6","_len6","_key6","ResetApiKeySecretRequest","_RequestPatch2","_len7","_this7","_key7","UpdateAppByAppIdRequest","_RequestPatch3","_this8","_len8","_key8","CreateAppRequest","_RequestPost2","_this9","_len9","_key9","CreateApiKeyByAccountIdRequest","_RequestPost3","_this0","_len0","_key0","CreateAssetTypeByAccountIdRequest","_RequestPost4","_this1","_len1","_key1","CreateImageUploadPresignedUrlRequest","_RequestPost5","_len10","_this10","_key10","CheckUrlSafetyByAccountIdRequest","_RequestPost6","_this11","_len11","_key11","CreateInvitationByAccountIdRequest","_RequestPost7","_len12","_this12","_key12","GetApiKeySecretRequest","_RequestGet5","_this13","_len13","_key13","CreatePrintPageTemplateByAccountIdRequest","_RequestPost8","_this14","_len14","_key14","CreateQrCodeStylingTemplateByAccountRequest","_RequestPost9","_len15","_this15","_key15","CreateUserMediaMultipartPresignedUrlByAccountIdRequest","_RequestPost0","_this16","_len16","_key16","CreatePrintStickerTemplateByAccountIdRequest","_RequestPost1","_len17","_this17","_key17","GetAccountAccessDataRequest","_RequestGet6","_this18","_len18","_key18","CreateQueryableCustomAttributeRequest","_RequestPost10","_len19","_this19","_key19","CreateUserMediaPresignedUrlByAccountIdRequest","_RequestPost11","_this20","_len20","_key20","CreateTicketByAccountIdRequest","_RequestPost12","_len21","_this21","_key21","DeleteContactsByAccountIdRequest","_RequestDelete","_this22","_len22","_key22","CreateProjectByAccountIdRequest","_RequestPost13","_this23","_len23","_key23","GetAccountRequest","_RequestGet7","_len24","_this24","_key24","DeleteUserByAccountIdRequest","_RequestDelete2","_this25","_len25","_key25","GetCustomDomainRequest","_RequestGet8","_this26","_len26","_key26","CreateLocationByAccountIdRequest","_RequestPost14","_this27","_len27","_key27","GetAdvancedAssetReportByAccountIdRequest","_RequestGet9","_this28","_len28","_key28","GetAllAppsByAccountIdRequest","_RequestGet0","_this29","_len29","_key29","CreateInvitationsByAccountIdRequest","_RequestPost15","_len30","_this30","_key30","GetAdvancedScanReportByAccountIdRequest","_RequestGet1","_this31","_len31","_key31","GetApiKeysByAccountIdRequest","_RequestGet10","_len32","_this32","_key32","GetAdvancedContactReportByAccountIdRequest","_RequestGet11","_this33","_len33","_key33","CreateQrCodeLogoByAccountRequest","_RequestPost16","_this34","_len34","_key34","GetAssetExportByAccountIdRequest","_RequestPost17","_this35","_len35","_key35","GetAssetGraphsByAccountIdRequest","_RequestGet12","_this36","_len36","_key36","GetAssetsScanCountByAccountIdRequest","_RequestPost18","_this37","_len37","_key37","GetAssetTypesByAccountIdRequest","_RequestGet13","_len38","_this38","_key38","GetBasicContactReportByAccountIdRequest","_RequestGet14","_this39","_len39","_key39","GetBatchesByAccountIdRequest","_RequestGet15","_this40","_len40","_key40","GetConsentByAccountIdRequest","_RequestGet16","_this41","_len41","_key41","GetBasicAssetReportByAccountIdRequest","_RequestGet17","_this42","_len42","_key42","GetDomainsByAccountIdRequest","_RequestGet18","_len43","_this43","_key43","GetContactExportByAccountIdRequest","_RequestPost19","_this44","_len44","_key44","GetAssetsByAccountIdRequest","_RequestGet19","_this45","_len45","_key45","GetInstalledAppsByAccountIdRequest","_RequestGet20","_len46","_this46","_key46","GetMostScannedAssetsByAccountIdRequest","_RequestGet21","_this47","_len47","_key47","GetPluginsByAccountIdRequest","_RequestGet22","_this48","_len48","_key48","GetJobsByAccountIdRequest","_RequestGet23","_this49","_len49","_key49","GetPricePlanByAccountIdRequest","_RequestGet24","_this50","_len50","_key50","GetLocationsByAccountIdRequest","_RequestGet25","_len51","_this51","_key51","GetPrintJobsByAccountIdRequest","_RequestGet26","_this52","_len52","_key52","GetPrintPageTemplatesByAccountIdRequest","_RequestGet27","_len53","_this53","_key53","GetProjectExportByAccountIdRequest","_RequestPost20","_this54","_len54","_key54","GetProjectsByAccountIdRequest","_RequestGet28","_this55","_len55","_key55","GetPrintStickerTemplatesByAccountIdRequest","_RequestGet29","_len56","_this56","_key56","GetQrCodeStylingTemplatesByAccountIdRequest","_RequestGet30","_this57","_len57","_key57","GetScanDayOfWeekByAccountIdRequest","_RequestGet31","_this58","_len58","_key58","GetQueryableCustomAttributeRequest","_RequestGet32","_len59","_this59","_key59","GetScanExportByAccountIdRequest","_RequestPost21","_this60","_len60","_key60","GetQrCodeLogosByAccountIdRequest","_RequestGet33","_len61","_this61","_key61","GetScanTimeOfDayByAccountIdRequest","_RequestGet34","_this62","_len62","_key62","GetQrCodesByAccountIdRequest","_RequestGet35","_this63","_len63","_key63","GetScanTimelineByAccountIdRequest","_RequestGet36","_len64","_this64","_key64","GetScansByAccountIdRequest","_RequestGet37","_this65","_len65","_key65","GetUserMediasByAccountIdRequest","_RequestGet38","_len66","_this66","_key66","GetUsersByAccountIdRequest","_RequestGet39","_this67","_len67","_key67","GetContactsByAccountIdRequest","_RequestGet40","_len68","_this68","_key68","CreateCampaignAccountByAccountIdRequest","_RequestPost22","_this69","_len69","_key69","InstallAppToAccountRequest","_RequestPost23","_this70","_len70","_key70","UpdateAccountRequest","_RequestPatch4","_this71","_len71","_key71","RetrieveCampaignStatusByAccountIdRequest","_RequestGet41","_this72","_len72","_key72","AdvanceStripeClockByAccountIdRequest","_RequestPost24","_len73","_this73","_key73","UpdateEngagePricePlanRequest","_RequestPatch5","_this74","_len74","_key74","GetUserByAccountIdRequest","_RequestGet42","_len75","_this75","_key75","GetUsersRolesByAccountIdRequest","_RequestGet43","_len76","_this76","_key76","UpdateUserByAccountIdRequest","_RequestPatch6","_this77","_len77","_key77","UpdatePricePlanByAccountIdRequest","_RequestPatch7","_len78","_this78","_key78","UpdateUsersRolesByAccountIdRequest","_RequestPatch8","_this79","_len79","_key79","UploadQrCodeLogoByAccountRequest","_RequestPost25","_len80","_this80","_key80","ComposeAssetByAssetTypeRequest","_RequestPost26","_this81","_len81","_key81","GetAppAccountByAppAccountIdRequest","_RequestGet44","_this82","_len82","_key82","DeleteAssetTypeRequest","_RequestDelete3","_this83","_len83","_key83","GetAssetTypeCountAtLocationRequest","_RequestGet45","_len84","_this84","_key84","GetMainAccountByAppAccountIdRequest","_RequestGet46","_len85","_this85","_key85","GetAssetsByAssetTypeRequest","_RequestGet47","_len86","_this86","_key86","CreateAssetByAssetTypeRequest","_RequestPost27","_this87","_len87","_key87","GetAssetTypeCountsByLocationRequest","_RequestGet48","_len88","_this88","_key88","GetAssetTypeByAssetTypeIdRequest","_RequestGet49","_this89","_len89","_key89","UpdateAssetTypeRequest","_RequestPatch9","_len90","_this90","_key90","GetAssetsByBatchIdRequest","_RequestGet50","_len91","_this91","_key91","UpdateAssetTypeCountAtLocationRequest","_RequestPatch0","_this92","_len92","_key92","DeleteAssetGraphRequest","_RequestDelete4","_this93","_len93","_key93","GetAssetGraphRequest","_RequestGet51","_this94","_len94","_key94","UpdateAssetGraphRequest","_RequestPatch1","_this95","_len95","_key95","CreateNeighborsByAssetIdRequest","_RequestPost28","_this96","_len96","_key96","CreateContactByAssetIdRequest","_RequestPost29","_this97","_len97","_key97","NameRequest","_RequestGet52","_len98","_this98","_key98","GetAssetHistoryRequest","_RequestGet53","_this99","_len99","_key99","DeleteAssetRequest","_RequestDelete5","_len100","_this100","_key100","GetContactsByAssetIdRequest","_RequestGet54","_this101","_len101","_key101","DeleteNeighborsByAssetIdRequest","_RequestPost30","_len102","_this102","_key102","GetExternalNeighborScanCountByAssetIdRequest","_RequestGet55","_this103","_len103","_key103","GetNeighborsByAssetIdRequest","_RequestGet56","_this104","_len104","_key104","CreateQrCodeByAssetIdRequest","_RequestPost31","_len105","_this105","_key105","GetQrCodesByAssetIdRequest","_RequestGet57","_this106","_len106","_key106","GetScansByAssetIdRequest","_RequestGet58","_this107","_len107","_key107","GetScanLocationDataByAssetIdRequest","_RequestGet59","_len108","_this108","_key108","CreateQrCodesByAssetIdRequest","_RequestPost32","_this109","_len109","_key109","GetScanExportByAssetIdRequest","_RequestPost33","_this110","_len110","_key110","UpdateAssetRequest","_RequestPatch10","_len111","_this111","_key111","UnlinkContactToAssetRequest","_RequestDelete6","_len112","_this112","_key112","LinkContactToAssetRequest","_RequestPost34","_len113","_this113","_key113","GetAllAccountsRequest","_RequestGet60","_len114","_this114","_key114","GetNeighborScanCountByAssetIdRequest","_RequestGet61","_this115","_len115","_key115","DeleteContactRequest","_RequestDelete7","_len116","_this116","_key116","GetContactRequest","_RequestGet62","_this117","_len117","_key117","GetConsentByContactIdRequest","_RequestGet63","_this118","_len118","_key118","GetUserMediasByAssetIdRequest","_RequestGet64","_this119","_len119","_key119","GetScanExportByContactIdRequest","_RequestPost35","_len120","_this120","_key120","CreateConsentByContactIdRequest","_RequestPost36","_this121","_len121","_key121","GetScanLocationDataByContactIdRequest","_RequestGet65","_this122","_len122","_key122","DeleteConsentByContactIdRequest","_RequestDelete8","_len123","_this123","_key123","GetContactExportByContactIdRequest","_RequestPost37","_this124","_len124","_key124","UpdateContactRequest","_RequestPatch11","_len125","_this125","_key125","CancelDowngradeRequestRequest","_RequestPost38","_this126","_len126","_key126","CancelSubscriptionRequest","_RequestPost39","_this127","_len127","_key127","GetAssetsByContactIdRequest","_RequestGet66","_this128","_len128","_key128","GetScansByContactIdRequest","_RequestGet67","_this129","_len129","_key129","ChangeSubscriptionPreviewRequest","_RequestGet68","_this130","_len130","_key130","CreateSetupIntentRequest","_RequestPost40","_this131","_len131","_key131","DowngradePlanRequest","_RequestPost41","_len132","_this132","_key132","GetInvoicesRequest","_RequestGet69","_this133","_len133","_key133","GetCurrentPeriodRequest","_RequestGet70","_this134","_len134","_key134","GetFileRequest","_RequestGet71","_len135","_this135","_key135","ChangeSubscriptionRequest","_RequestPost42","_this136","_len136","_key136","LinkContactToScanRequest","_RequestPost43","_len137","_this137","_key137","CreateUserByInvitationIdRequest","_RequestPost44","_this138","_len138","_key138","DeleteCustomDomainRequest","_RequestDelete9","_this139","_len139","_key139","ValidateFileRequest","_RequestPost45","_this140","_len140","_key140","DeleteInvitationRequest","_RequestDelete0","_this141","_len141","_key141","UpdateAssetsLocationsRequest","_RequestPatch12","_len142","_this142","_key142","GetInvitationRequest","_RequestGet72","_this143","_len143","_key143","DeleteLocationRequest","_RequestDelete1","_this144","_len144","_key144","RetryCustomDomainRequest","_RequestPost46","_len145","_this145","_key145","GetAssetsByLocationIdRequest","_RequestGet73","_this146","_len146","_key146","GetBillingDetailsRequest","_RequestGet74","_len147","_this147","_key147","CheckCustomLocatorKeyRangeRequest","_RequestGet75","_this148","_len148","_key148","GetPricePlansRequest","_RequestGet76","_this149","_len149","_key149","GetJobRequest","_RequestGet77","_this150","_len150","_key150","InvokePrintJobByJobIdRequest","_RequestPatch13","_this151","_len151","_key151","SendSupportEmailRequest","_RequestPost47","_len152","_this152","_key152","GetQrCodeLinkRequest","_RequestGet78","_len153","_this153","_key153","GetQrCodeLogoByQrCodeLogoIdRequest","_RequestGet79","_this154","_len154","_key154","DeletePrintJobRequest","_RequestDelete10","_len155","_this155","_key155","UpdateQrCodeLogoByQrCodeLogoIdRequest","_RequestPatch14","_this156","_len156","_key156","CreateContactByScanIdRequest","_RequestPost48","_this157","_len157","_key157","DeleteJobRequest","_RequestDelete11","_len158","_this158","_key158","SaveGeolocationByScanIdRequest","_RequestPatch15","_this159","_len159","_key159","GetScanRequest","_RequestGet80","_len160","_this160","_key160","UpdateScanCustomAttributeRequest","_RequestPatch16","_len161","_this161","_key161","CreateLinkByQrCodeRequest","_RequestPost49","_this162","_len162","_key162","DeleteLinkByQrCodeRequest","_RequestDelete12","_this163","_len163","_key163","UpdateLocationRequest","_RequestPatch17","_this164","_len164","_key164","GetQrCodeRequest","_RequestGet81","_this165","_len165","_key165","UpdateQrCodeRequest","_RequestPatch18","_len166","_this166","_key166","CompleteUserMediaMultipartUploadRequest","_RequestPost50","_this167","_len167","_key167","LinkMediaToAssetRequest","_RequestPost51","_len168","_this168","_key168","LinkMediaToScanRequest","_RequestPost52","_len169","_this169","_key169","UnlinkMediaToAssetRequest","_RequestDelete13","_this170","_len170","_key170","LinkMediaToProjectRequest","_RequestPost53","_this171","_len171","_key171","GetMediaRequest","_RequestGet82","_this172","_len172","_key172","UnlinkMediaToScanRequest","_RequestDelete14","_this173","_len173","_key173","GetLinksByQrCodeRequest","_RequestGet83","_len174","_this174","_key174","DeletePrintStickerTemplateRequest","_RequestDelete15","_this175","_len175","_key175","DeletePrintPageTemplateRequest","_RequestDelete16","_len176","_this176","_key176","GetPrintPageTemplateRequest","_RequestGet84","_this177","_len177","_key177","DeleteQrCodeStylingTemplateByStylingTemplateIdRequest","_RequestDelete17","_this178","_len178","_key178","GetUserRolesRequest","_RequestGet85","_len179","_this179","_key179","GetPrintStickerTemplateRequest","_RequestGet86","_len180","_this180","_key180","UpdateMediaRequest","_RequestPatch19","_this181","_len181","_key181","UpdateQrCodeStylingTemplateByStylingTemplateIdRequest","_RequestPatch20","_len182","_this182","_key182","GetQrCodeStylingTemplateByStylingTemplateIdRequest","_RequestGet87","_len183","_this183","_key183","CreateAccountByUserIdRequest","_RequestPost54","_len184","_this184","_key184","GetErrorsByUserIdRequest","_RequestGet88","_this185","_len185","_key185","GetInvitationsByUserIdRequest","_RequestGet89","_len186","_this186","_key186","UpdatePrintStickerTemplateRequest","_RequestPatch21","_this187","_len187","_key187","GetUserRequest","_RequestGet90","_this188","_len188","_key188","GetUserSettingsByUserIdRequest","_RequestGet91","_len189","_this189","_key189","DeleteQrCodeRequest","_RequestDelete18","_this190","_len190","_key190","UnlinkMediaToProjectRequest","_RequestDelete19","_this191","_len191","_key191","GetAccountsByUserIdRequest","_RequestGet92","_this192","_len192","_key192","CreateAssetBatchValidationJobByProjectIdRequest","_RequestPost55","_this193","_len193","_key193","UpdatePrintPageTemplateRequest","_RequestPatch22","_len194","_this194","_key194","CreateAssetCreationJobByProjectIdRequest","_RequestPost56","_this195","_len195","_key195","CreateAssetCreationPresignedUrlRequest","_RequestPost57","_this196","_len196","_key196","CreateAssetGraphByProjectIdRequest","_RequestPost58","_this197","_len197","_key197","UpdateUserRequest","_RequestPatch23","_len198","_this198","_key198","CreateSmsTemplateByProjectIdRequest","_RequestPost59","_this199","_len199","_key199","CreateAssetsByProjectIdRequest","_RequestPost60","_len200","_this200","_key200","CreateAssetByProjectIdRequest","_RequestPost61","_this201","_len201","_key201","CreateSelfQueuePrintJobByProjectIdRequest","_RequestPost62","_this202","_len202","_key202","CreateTemplatedPrintJobByProjectIdRequest","_RequestPost63","_len203","_this203","_key203","CreateContactByProjectIdRequest","_RequestPost64","_this204","_len204","_key204","CreateTemplatedPrintPreviewByProjectIdRequest","_RequestPost65","_len205","_this205","_key205","DeleteContactsByProjectIdRequest","_RequestDelete20","_this206","_len206","_key206","DeleteSmsTemplateByProjectIdRequest","_RequestDelete21","_this207","_len207","_key207","DeleteProjectRequest","_RequestDelete22","_this208","_len208","_key208","GetAdvancedAssetReportByProjectIdRequest","_RequestGet93","_this209","_len209","_key209","GetAdvancedContactReportByProjectIdRequest","_RequestGet94","_this210","_len210","_key210","GetAdvancedScanReportByProjectIdRequest","_RequestGet95","_len211","_this211","_key211","SetUserSettingsByUserIdRequest","_RequestPatch24","_this212","_len212","_key212","GetAssetExportByProjectIdRequest","_RequestPost66","_len213","_this213","_key213","GetAssetGraphsByProjectIdRequest","_RequestGet96","_this214","_len214","_key214","GetBasicAssetReportByProjectIdRequest","_RequestGet97","_len215","_this215","_key215","GetAssetsByProjectIdRequest","_RequestGet98","_this216","_len216","_key216","GetBatchesByProjectIdRequest","_RequestGet99","_len217","_this217","_key217","GetConsentByProjectIdRequest","_RequestGet100","_this218","_len218","_key218","GetContactExportByProjectIdRequest","_RequestPost67","_this219","_len219","_key219","CreateQrCodeByProjectIdRequest","_RequestPost68","_len220","_this220","_key220","GetContactsByProjectIdRequest","_RequestGet101","_this221","_len221","_key221","CreateContactsByProjectIdRequest","_RequestPost69","_len222","_this222","_key222","GetMostScannedAssetsByProjectIdRequest","_RequestGet102","_this223","_len223","_key223","GetBasicContactReportByProjectIdRequest","_RequestGet103","_this224","_len224","_key224","GetQrCodesByProjectIdRequest","_RequestGet104","_len225","_this225","_key225","GetScanDayOfWeekByProjectIdRequest","_RequestGet105","_this226","_len226","_key226","GetScanTimelineByProjectIdRequest","_RequestGet106","_this227","_len227","_key227","GetScansByProjectIdRequest","_RequestGet107","_len228","_this228","_key228","GetScanExportByProjectIdRequest","_RequestPost70","_this229","_len229","_key229","GetUserMediasByProjectIdRequest","_RequestGet108","_len230","_this230","_key230","GetScanTimeOfDayByProjectIdRequest","_RequestGet109","_this231","_len231","_key231","UpdateProjectByProjectIdRequest","_RequestPatch25","_len232","_this232","_key232","GetProjectByProjectIdRequest","_RequestGet110","_this233","_len233","_key233","ChangePasswordRequest","_RequestPost71","_this234","_len234","_key234","CheckSessionRequest","_RequestGet111","_this235","_len235","_key235","GetSessionRequest","_RequestPost72","_this236","_len236","_key236","ResendConfirmationRequest","_RequestPost73","_len237","_this237","_key237","GetSessionRefreshRequest","_RequestPost74","_len238","_this238","_key238","ResetPasswordRequest","_RequestPost75","_len239","_this239","_key239","CreateUserRequest","_RequestPost76","_len240","_this240","_key240","DeleteSessionRequest","_RequestDelete23","_len241","_this241","_key241","DeleteMediaRequest","_RequestDelete24","_this242","_len242","_key242","SdkApikeySecretResources","_Resources","update","request","undefined","SdkApikeyResource","_Resource","_proto2","secret","_this245","requestBody","SdkAppAccountLoadResources","_Resources2","create","_this247","SdkAppAccountResource","_Resource2","load","SdkAppResource","_Resource3","_proto5","account","accountId","_this248","SdkAppsResources","_Resources3","queryStringParameters","SdkAppsPublishedResources","_Resources4","_this251","SdkAccountAppsResources","_Resources5","_proto8","_this252","SdkAccountApikeysResources","_Resources6","_proto9","_this255","SdkAccountAssettypesResources","_Resources7","_proto0","SdkAccountImageUploadResources","_Resources8","SdkAccountUrlSafetiesResources","_Resources9","SdkAccountInvitationsResources","_Resources0","_this260","SdkAccountPrintPageTemplatesResources","_Resources1","_proto12","_this261","_this262","SdkAccountStylingtemplatesResources","_Resources10","_proto13","SdkAccountUsermediasPresignedurlmultipartResources","_Resources11","_this265","SdkAccountPrintStickerTemplatesResources","_Resources12","_proto15","_this266","_this267","SdkAccountUserConfirmResources","_Resources13","SdkAccountUserRolesResources","_Resources14","_proto17","_this270","SdkAccountUserResource","_Resource4","_proto18","confirm","roles","_this273","SdkAccountCustomattributesResources","_Resources15","_proto19","_this274","SdkAccountUsermediasPresignedurlResources","_Resources16","SdkAccountZendeskTicketResources","_Resources17","_this277","SdkAccountContactsBatchResources","_Resources18","_this278","SdkAccountProjectsResources","_Resources19","_proto23","SdkAccountCustomDomainResource","_Resource5","SdkAccountLocationsResources","_Resources20","_proto25","SdkAccountAdvancedAssetsReportResources","_Resources21","_this284","SdkAccountOwnerAppsResources","_Resources22","_this285","SdkAccountInvitationsBatchResources","_Resources23","_this286","SdkAccountAdvancedScansReportResources","_Resources24","SdkAccountAdvancedContactsReportResources","_Resources25","_this288","SdkAccountQrcodelogosResources","_Resources26","_proto31","SdkAccountAssetsExportResources","_Resources27","_this291","SdkAccountAssetgraphsResources","_Resources28","_this292","SdkAccountAssetsScansResources","_Resources29","_this293","SdkAccountBasicContactsReportResources","_Resources30","SdkAccountBatchResources","_Resources31","SdkAccountConsentResources","_Resources32","SdkAccountBasicAssetsReportResources","_Resources33","SdkAccountCustomDomainsResources","_Resources34","_this298","SdkAccountContactsExportResources","_Resources35","SdkAccountAssetsResources","_Resources36","SdkAccountAssetsMostscannedResources","_Resources37","SdkAccountPluginsResources","_Resources38","SdkAccountJobsResources","_Resources39","SdkAccountPricePlanResources","_Resources40","_proto45","_this305","SdkAccountPrintJobsResources","_Resources41","SdkAccountProjectsExportResources","_Resources42","SdkAccountScansDayofweekResources","_Resources43","SdkAccountScansExportResources","_Resources44","SdkAccountScansTimeofdayResources","_Resources45","SdkAccountQrCodesResources","_Resources46","SdkAccountScansTimelineResources","_Resources47","SdkAccountScansResources","_Resources48","SdkAccountUsermediasResources","_Resources49","_this314","SdkAccountUsersResources","_Resources50","_this315","SdkAccountContactsResources","_Resources51","SdkAccountCampaignInformationResources","_Resources52","_proto57","_this317","SdkAccountAppInstallResources","_Resources53","_this319","SdkAccountAppResource","_Resource6","install","SdkAccountClockResources","_Resources54","SdkAccountEngagePricePlanResources","_Resources55","SdkAccountQrcodelogosUploadResources","_Resources56","SdkAccountResource","_Resource7","_proto63","apps","apikeys","assettypes","imageUpload","urlSafeties","invitations","printPageTemplates","stylingtemplates","usermediasPresignedurlmultipart","printStickerTemplates","user","userId","customattributes","usermediasPresignedurl","zendeskTicket","contactsBatch","projects","customDomain","locations","advancedAssetsReport","ownerApps","invitationsBatch","advancedScansReport","advancedContactsReport","qrcodelogos","assetsExport","assetgraphs","assetsScans","basicContactsReport","batch","consent","basicAssetsReport","customDomains","contactsExport","assets","assetsMostscanned","plugins","jobs","pricePlan","printJobs","projectsExport","scansDayofweek","scansExport","scansTimeofday","qrCodes","scansTimeline","scans","usermedias","users","contacts","campaignInformation","app","appId","clock","engagePricePlan","qrcodelogosUpload","SdkAssettypeAssetResource","_Resource8","SdkAssettypeLocationResource","_Resource9","_proto65","_this326","SdkAssettypeAssetsResources","_Resources57","_proto66","SdkAssettypeLocationsResources","_Resources58","_this330","SdkAssettypeResource","_Resource0","_proto68","asset","assetId","location","locationId","_this332","SdkAppsAccountMainResources","_Resources59","SdkAppsAccountResource","_Resource1","_proto70","main","SdkBatchAssetsResources","_Resources60","SdkBatchResource","_Resource10","SdkAssetgraphResource","_Resource11","_proto73","_this339","SdkAssetNeighborsResources","_Resources61","_proto74","_this340","SdkAssetContactsResources","_Resources62","_proto75","_this343","SdkAssetHistoryResources","_Resources63","_this344","SdkAssetNeighborsDeleteResources","_Resources64","SdkAssetUrlResource","_Resource12","SdkAssetQrCodesResources","_Resources65","_proto79","_this348","SdkAssetScansResources","_Resources66","_this349","SdkAssetScansLocationResources","_Resources67","SdkAssetQracodesResources","_Resources68","_this351","SdkAssetScansExportResources","_Resources69","_this352","SdkAssetContactResource","_Resource13","_proto84","_this354","SdkAssetNeighborResource","_Resource14","_this355","SdkAssetUsermediasResources","_Resources70","SdkAssetResource","_Resource15","_proto87","neighbors","history","neighborsDelete","scansLocation","qracodes","contact","contactId","neighbor","neighborId","_this358","SdkCareAccountsResources","_Resources71","SdkContactConsentResources","_Resources72","_proto89","SdkContactScansExportResources","_Resources73","_this364","SdkContactScansLocationResources","_Resources74","_this365","SdkContactExportResources","_Resources75","SdkContactAssetsResources","_Resources76","SdkContactScansResources","_Resources77","_this368","SdkContactScanResource","_Resource16","SdkContactResource","_Resource17","_proto96","scan","scanId","SdkBillingCancelDowngradeResource","_Resource18","_this373","SdkBillingCancelSubscriptionResource","_Resource19","SdkUpgradePlanBillingPreviewResource","_Resource20","_this375","SdkBillingSetupIntentResource","_Resource21","SdkBillingDowngradePlanResource","_Resource22","SdkBillingInvoiceResource","_Resource23","SdkBillingCurrentPeriodResource","_Resource24","SdkFileValidateResources","_Resources78","SdkFileResource","_Resource25","_proto105","validate","_this381","SdkBillingUpgradePlanResource","_Resource26","SdkInvitationUsersResources","_Resources79","_this383","SdkInvitationResource","_Resource27","_proto108","SdkCustomdomainRetryResources","_Resources80","_this386","SdkCustomdomainLocatorCollisionsResources","_Resources81","SdkCustomdomainResource","_Resource28","_proto111","retry","locatorCollisions","SdkLocationAssetsResources","_Resources82","_proto112","_this389","SdkLocationResource","_Resource29","_proto113","_this391","SdkBillingDetailResource","_Resource30","_this393","SdkPricePlansResources","_Resources83","SdkJobResource","_Resource31","_proto116","SdkPrintJobResource","_Resource32","_proto117","SdkSupportResources","_Resources84","SdkQrcodelinkResource","_Resource33","_this400","SdkQrcodelogoResource","_Resource34","_proto120","SdkScanContactsResources","_Resources85","_this403","SdkScanCustomAttributeResources","_Resources86","SdkScanResource","_Resource35","_proto123","customAttribute","SdkQrCodeLinksResources","_Resources87","_proto124","_this407","SdkQrCodeLinkResource","_Resource36","SdkQrCodeResource","_Resource37","_proto126","links","link","_this411","_this412","SdkUsermediaMultipartResources","_Resources88","_this413","SdkUsermediaAssetResource","_Resource38","_proto128","SdkUsermediaScanResource","_Resource39","_proto129","SdkUsermediaProjectResource","_Resource40","_proto130","_this419","SdkUsermediaResource","_Resource41","_proto131","multipart","project","projectId","_this420","SdkPrintStickerTemplateResource","_Resource42","_proto132","_this425","SdkPrintPageTemplateResource","_Resource43","_proto133","SdkStylingtemplateResource","_Resource44","_proto134","_this431","SdkUserrolesResources","_Resources89","SdkUserAccountsResources","_Resources90","_proto136","_this433","SdkUserErrorsResources","_Resources91","SdkUserInvitationsResources","_Resources92","_this436","SdkUserPathSettingsResources","_Resources93","_proto139","SdkUserPathResource","_Resource45","settings","SdkUserResource","_Resource46","_proto141","accounts","errors","path","SdkProjectValidationJobsAssetbatchResources","_Resources94","_this441","SdkProjectJobsAssetbatchResources","_Resources95","SdkProjectPresignedurlJobsAssetbatchResources","_Resources96","SdkProjectAssetgraphsResources","_Resources97","_proto145","_this445","SdkProjectSmsTemplatesResources","_Resources98","SdkProjectAssetsBatchResources","_Resources99","_this447","SdkProjectAssetsResources","_Resources100","_proto148","SdkProjectSelfqueueprintResources","_Resources101","_this450","SdkProjectPrintJobsResources","_Resources102","_this451","SdkProjectContactsResources","_Resources103","_proto151","_this453","SdkProjectTemplatedPrintPreviewResources","_Resources104","SdkProjectContactsBatchResources","_Resources105","_proto153","SdkProjectSmsTemplateResource","_Resource47","SdkProjectAdvancedAssetsReportResources","_Resources106","SdkProjectAdvancedContactsReportResources","_Resources107","SdkProjectAdvancedScansReportResources","_Resources108","_this460","SdkProjectAssetsExportResources","_Resources109","SdkProjectBasicAssetsReportResources","_Resources110","SdkProjectBatchResources","_Resources111","_this463","SdkProjectConsentResources","_Resources112","SdkProjectContactsExportResources","_Resources113","SdkProjectQrCodesResources","_Resources114","_proto163","SdkProjectAssetsMostscannedResources","_Resources115","_this468","SdkProjectBasicContactsReportResources","_Resources116","_this469","SdkProjectScansDayofweekResources","_Resources117","SdkProjectScansTimelineResources","_Resources118","SdkProjectScansResources","_Resources119","SdkProjectScansExportResources","_Resources120","SdkProjectUsermediasResources","_Resources121","SdkProjectScansTimeofdayResources","_Resources122","SdkProjectResource","_Resource48","_proto172","validationJobsAssetbatch","jobsAssetbatch","presignedurlJobsAssetbatch","smsTemplates","assetsBatch","selfqueueprint","templatedPrintPreview","smsTemplate","smsTemplateName","_this476","SdkPasswordAuthUserResources","_Resources123","SdkAuthSessionResources","_Resources124","_proto174","_this480","SdkConfirmationAuthUserResources","_Resources125","SdkRefreshAuthSessionResources","_Resources126","SdkResetAuthUserResources","_Resources127","SdkAuthUserResources","_Resources128","SdkResources","_Resources129","_proto179","apikey","apiKeyId","appsPublished","assettype","assetTypeId","appsAccount","appAccountId","batchId","assetgraph","assetGraphId","careAccounts","billingCancelDowngrade","billingCancelSubscription","upgradePlanBillingPreview","billingSetupIntent","billingDowngradePlan","billingInvoice","billingCurrentPeriod","file","fileId","billingUpgradePlan","invitation","invitationId","customdomain","billingDetail","pricePlans","job","jobId","printJob","printJobId","support","qrcodelink","qrCodeLink","qrcodelogo","qrCodeLogoId","qrCode","qrCodeId","usermedia","mediaId","printStickerTemplate","printStickerTemplateId","printPageTemplate","printPageTemplateId","stylingtemplate","stylingTemplateId","userroles","passwordAuthUser","authSession","confirmationAuthUser","refreshAuthSession","resetAuthUser","authUser","NullSession","debugConfig","debugAuth","exp","getConfig","getUser","getSignedInUser","createUser","changePassword","signOut","Openscreen","_SdkResources","_config","cloudConfigName","_user","OS_DEBUG","process","env","log","toLowerCase","split","includes","warn","config","key","environment","checkSession","info","_exit","_result","c","repeat","email","password","res","expires","firstName","lastName","middleName","Number","Date","getTime","pathToConfig","thisAxios","baseURL","timeout","responseType","maxContentLength","maxBodyLength","maxRedirects","decompress","message","jar","CookieJar","wrapper","oldPassword","newPassword"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../src/request.ts","../src/sdk.ts","../src/request-delete.ts","../src/request-get.ts","../src/request-patch.ts","../src/request-post.ts","../src/resource.ts","../src/openscreen.ts"],"sourcesContent":["/* eslint-disable no-console, import/no-cycle */\nimport {IOpenscreenSession} from './openscreen-session'\n\nexport interface RequestRouteSegment {\n parm?: string\n routePart: string\n sdkPartName: string\n}\n\nexport class Request {\n session: IOpenscreenSession\n routeSegments?: RequestRouteSegment[]\n\n constructor(session: IOpenscreenSession) {\n this.session = session\n }\n\n async makeUri(pathParameters: any = {}) {\n const cloudConfig = await this.session.getCloudConfig()\n const urlParts: string[] = [cloudConfig.endpoint.replace(/\\/+$/, '')]\n this.routeSegments!.forEach((segment) => {\n urlParts.push(segment.routePart)\n if (segment.parm) {\n const value = pathParameters[segment.parm!]\n if (!value) {\n throw Error(`Openscreen: missing path parameter value for '${segment.parm!}'`)\n }\n urlParts.push(value)\n }\n })\n return urlParts.join('/')\n }\n\n debugRequest(httpMethod: string, url: string, queryParameters?: any, body?: any, options?: any) {\n if (this.session.debugRequest) {\n console.debug(`Openscreen REQUEST: ${httpMethod.toUpperCase()} ${url}`)\n if (body) console.debug(`Openscreen REQUEST: ${JSON.stringify(body, null, 2)}`)\n if (queryParameters && this.session.debugQuery) {\n console.debug(`Openscreen QUERY: ${JSON.stringify(queryParameters, null, 2)}`)\n }\n if (options && this.session.debugOptions) {\n console.debug(`Openscreen OPTIONS: ${JSON.stringify(options, null, 2)}`)\n }\n }\n }\n\n debugResponse(response: any) {\n if (this.session.debugResponse) {\n console.debug(`Openscreen RESPONSE: ${JSON.stringify(response.data || {}, null, 2)}`)\n }\n }\n\n handleAndDebugErr(err: any): any {\n if (err.response && err.response.data) {\n if (this.session.debugError) {\n console.error(`Openscreen ERROR: ${JSON.stringify(err.response.data, null, 2)}`)\n } else if (this.session.debugResponse) {\n console.error(`Openscreen RESPONSE: ${JSON.stringify(err.response.data, null, 2)}`)\n }\n return err.response.data\n }\n if (this.session.debugError) {\n try {\n console.error(err)\n } catch {\n console.error(`Openscreen: (unable to print error)`)\n }\n }\n return err\n }\n}\n","import {RequestRouteSegment} from './request.js'\nimport {RequestDelete} from './request-delete.js'\nimport {RequestGet} from './request-get.js'\nimport {RequestPatch} from './request-patch.js'\nimport {RequestPost} from './request-post.js'\nimport {Resource, Resources} from './resource.js'\n\nexport interface NestedKeyValueObject {\n [key: string] : string | number | boolean | NestedKeyValueObject | string[]\n}\n// ENUMERATIONS\n\nexport enum AccountDomainTypes {\n ENGAGE_MICROSITE = 'ENGAGE_MICROSITE',\n QRCODE = 'QRCODE',\n TRACK_WORKFLOW = 'TRACK_WORKFLOW',\n}\n\nexport enum AccountSortingTypes {\n CREATED_DATE = 'CREATED_DATE',\n STATIC_QR_CODE_COUNT = 'STATIC_QR_CODE_COUNT',\n DYNAMIC_QR_CODE_COUNT = 'DYNAMIC_QR_CODE_COUNT',\n SCAN_COUNT = 'SCAN_COUNT',\n CONTACT_COUNT = 'CONTACT_COUNT',\n PRICE_PLAN = 'PRICE_PLAN',\n LAST_ACTIVITY = 'LAST_ACTIVITY',\n CLIENT_EXEC = 'CLIENT_EXEC',\n ASSET_COUNT = 'ASSET_COUNT',\n SMS_COUNT = 'SMS_COUNT',\n ACCOUNT_STATUS = 'ACCOUNT_STATUS',\n}\n\nexport enum AccountStatus {\n ACTIVE = 'ACTIVE',\n SUSPENDED = 'SUSPENDED',\n CANCELLED = 'CANCELLED',\n}\n\nexport enum AccountType {\n INTERNAL = 'INTERNAL',\n EXTERNAL = 'EXTERNAL',\n}\n\nexport enum AccountUserRole {\n OWNER = 'OWNER',\n ADMINISTRATOR = 'ADMINISTRATOR',\n BILLING_CONTACT = 'BILLING_CONTACT',\n MEMBER = 'MEMBER',\n API_KEY = 'API_KEY',\n INVITATION_DECLINED = 'INVITATION_DECLINED',\n READ_ONLY = 'READ_ONLY',\n}\n\nexport enum AssetByAssetTypeSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n SCAN_COUNT = 'SCAN_COUNT',\n QR_CODE_COUNT = 'QR_CODE_COUNT',\n STATE = 'STATE',\n}\n\nexport enum AssetCreationFileTypes {\n json = 'json',\n csv = 'csv',\n}\n\nexport enum AssetSortingTypes {\n MODIFIED = 'MODIFIED',\n STATE = 'STATE',\n NAME = 'NAME',\n SCAN_COUNT = 'SCAN_COUNT',\n QR_CODE_COUNT = 'QR_CODE_COUNT',\n ASSET_TYPE_NAME = 'ASSET_TYPE_NAME',\n}\n\nexport enum AssetTypeSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n}\n\nexport enum AssetTypeUsabilityState {\n PUBLISHED = 'PUBLISHED',\n DRAFT = 'DRAFT',\n ARCHIVED = 'ARCHIVED',\n}\n\nexport enum AuthMessageId {\n INVALID_API_KEY = 'INVALID_API_KEY',\n INVALID_EMAIL = 'INVALID_EMAIL',\n INVALID_LEGACY_MIGRATION = 'INVALID_LEGACY_MIGRATION',\n INVALID_PASSWORD = 'INVALID_PASSWORD',\n INVALID_SCOPE = 'INVALID_SCOPE',\n INVALID_SECRET = 'INVALID_SECRET',\n INVALID_TOKEN = 'INVALID_TOKEN',\n MIGRATE_FROM_COGNITO = 'MIGRATE_FROM_COGNITO',\n NO_ACCESS_TOKEN = 'NO_ACCESS_TOKEN',\n NO_REFRESH_TOKEN = 'NO_REFRESH_TOKEN',\n RESET_PASSWORD = 'RESET_PASSWORD',\n RESET_SECRET = 'RESET_SECRET',\n SUSPENDED_OR_INACTIVE = 'SUSPENDED_OR_INACTIVE',\n TOKEN_EXPIRED = 'TOKEN_EXPIRED',\n TRY_AGAIN = 'TRY_AGAIN',\n UNABLE_TO_CONFIRM_EMAIL = 'UNABLE_TO_CONFIRM_EMAIL',\n UNCONFIRMED_EMAIL = 'UNCONFIRMED_EMAIL',\n EMAIL_ALREADY_TAKEN = 'EMAIL_ALREADY_TAKEN',\n SSO_USER = 'SSO_USER',\n}\n\nexport enum AuthTokenScope {\n API = 'API',\n SSO = 'SSO',\n CONFIRM_EMAIL = 'CONFIRM_EMAIL',\n NEW_PASSWORD = 'NEW_PASSWORD',\n NO_SESSION = 'NO_SESSION',\n NO_PASSWORD = 'NO_PASSWORD',\n CONFIRMED_NO_PASSWORD = 'CONFIRMED_NO_PASSWORD',\n}\n\nexport enum AuthTypes {\n MICROSOFT = 'MICROSOFT',\n}\n\nexport enum CampaignUseCaseCategory {\n TWO_FACTOR_AUTHENTICATION = 'TWO_FACTOR_AUTHENTICATION',\n MARKETING = 'MARKETING',\n CUSTOMER_CARE = 'CUSTOMER_CARE',\n CHARITY_NONPROFIT = 'CHARITY_NONPROFIT',\n DELIVERY_NOTIFICATIONS = 'DELIVERY_NOTIFICATIONS',\n FRAUD_ALERT_MESSAGING = 'FRAUD_ALERT_MESSAGING',\n EVENTS = 'EVENTS',\n HIGHER_EDUCATION = 'HIGHER_EDUCATION',\n K12 = 'K12',\n POLLING_AND_VOTING_NON_POLITICAL = 'POLLING_AND_VOTING_NON_POLITICAL',\n POLITICAL_ELECTION_CAMPAIGNS = 'POLITICAL_ELECTION_CAMPAIGNS',\n PUBLIC_SERVICE_ANNOUNCEMENT = 'PUBLIC_SERVICE_ANNOUNCEMENT',\n SECURITY_ALERT = 'SECURITY_ALERT',\n ACCOUNT_NOTIFICATIONS = 'ACCOUNT_NOTIFICATIONS',\n}\n\nexport enum ConsentStatus {\n ACCEPTED = 'ACCEPTED',\n DECLINED = 'DECLINED',\n true = 'true',\n false = 'false',\n}\n\nexport enum ConsentType {\n SMS = 'SMS',\n EMAIL = 'EMAIL',\n DATA = 'DATA',\n CUSTOM = 'CUSTOM',\n}\n\nexport enum ContactAssetSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n PHONE = 'PHONE',\n EMAIL = 'EMAIL',\n LAST_SCAN_TIME = 'LAST_SCAN_TIME',\n LAST_SCAN_LOCATION = 'LAST_SCAN_LOCATION',\n SCAN_COUNT = 'SCAN_COUNT',\n}\n\nexport enum ContactSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n ASSET_NAME = 'ASSET_NAME',\n PHONE = 'PHONE',\n EMAIL = 'EMAIL',\n LAST_SCAN_TIME = 'LAST_SCAN_TIME',\n LAST_SCAN_LOCATION = 'LAST_SCAN_LOCATION',\n SCAN_COUNT = 'SCAN_COUNT',\n}\n\nexport enum DomainStatus {\n INITIATED = 'INITIATED',\n VERIFIED = 'VERIFIED',\n CERTIFICATE_REQUESTED = 'CERTIFICATE_REQUESTED',\n CERTIFICATE_VALIDATION_ADDED = 'CERTIFICATE_VALIDATION_ADDED',\n CERTIFICATE_VALIDATED = 'CERTIFICATE_VALIDATED',\n CDN_DISTRIBUTION_ADDED = 'CDN_DISTRIBUTION_ADDED',\n COMPLETED = 'COMPLETED',\n FAILED = 'FAILED',\n}\n\nexport enum EntitySources {\n CARE_API = 'CARE_API',\n}\n\nexport enum FieldType {\n STRING = 'STRING',\n NUMBER = 'NUMBER',\n}\n\nexport enum InternalProductName {\n ENGAGE = 'ENGAGE',\n TRACK = 'TRACK',\n INVENTORY = 'INVENTORY',\n CREATE = 'CREATE',\n}\n\nexport enum InvoiceStatus {\n COMING_UP = 'COMING_UP',\n PAID = 'PAID',\n PAST_DUE = 'PAST_DUE',\n VOID = 'VOID',\n}\n\nexport enum JobStatus {\n IN_PROGRESS = 'IN_PROGRESS',\n COMPLETED = 'COMPLETED',\n TIMEOUT = 'TIMEOUT',\n FAILED = 'FAILED',\n CANCELLED = 'CANCELLED',\n DOWNLOADED = 'DOWNLOADED',\n}\n\nexport enum JobType {\n BATCH_CREATE_BLANK_ITEMS = 'BATCH_CREATE_BLANK_ITEMS',\n BATCH_CREATE_ASSETS = 'BATCH_CREATE_ASSETS',\n VALIDATE_CSV = 'VALIDATE_CSV',\n VALIDATE_AND_GENERATE_CSV = 'VALIDATE_AND_GENERATE_CSV',\n SELF_QUEUE_BATCH_PRINT = 'SELF_QUEUE_BATCH_PRINT',\n SCAN_EXPORT = 'SCAN_EXPORT',\n ASSET_EXPORT = 'ASSET_EXPORT',\n CONTACT_EXPORT = 'CONTACT_EXPORT',\n TEMPLATED_PRINT = 'TEMPLATED_PRINT',\n CLONE_MICROSITE = 'CLONE_MICROSITE',\n QRCODE_SCANS_EXPORT = 'QRCODE_SCANS_EXPORT',\n PROJECT_EXPORT = 'PROJECT_EXPORT',\n ACCOUNT_EXPORT = 'ACCOUNT_EXPORT',\n WEB_SESSION_EXPORT = 'WEB_SESSION_EXPORT',\n USER_DB_ENTITIES_GENENERATION = 'USER_DB_ENTITIES_GENENERATION',\n USER_DB_ENTITIES_EXPORT = 'USER_DB_ENTITIES_EXPORT',\n UPDATE_MICROSITE_QR_CODE_CUSTOM_DOMAIN = 'UPDATE_MICROSITE_QR_CODE_CUSTOM_DOMAIN',\n UPDATE_MICROSITE_CDN_CUSTOM_DOMAIN = 'UPDATE_MICROSITE_CDN_CUSTOM_DOMAIN',\n}\n\nexport enum Label {\n NONE = 'NONE',\n ASSET_NAME = 'ASSET_NAME',\n CUSTOM = 'CUSTOM',\n COMPANY_NAME = 'COMPANY_NAME',\n LOCATOR_KEY = 'LOCATOR_KEY',\n}\n\nexport enum LocationSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n STATE = 'STATE',\n}\n\nexport enum OpenscreenEmails {\n SALES_EMAIL = 'SALES_EMAIL',\n SUPPORT_EMAIL = 'SUPPORT_EMAIL',\n}\n\nexport enum Permission {\n PLUGIN_CONFIGURATION = 'PLUGIN_CONFIGURATION',\n INDIVIDUAL_ACCOUNT_SETTINGS = 'INDIVIDUAL_ACCOUNT_SETTINGS',\n WORKFLOW_BUILDER = 'WORKFLOW_BUILDER',\n QR_CODE_AND_PRINT_STUDIO = 'QR_CODE_AND_PRINT_STUDIO',\n REPORTING_AND_ANALYTICS = 'REPORTING_AND_ANALYTICS',\n USER_MANAGEMENT = 'USER_MANAGEMENT',\n BILLING = 'BILLING',\n}\n\nexport enum PluginNameTypes {\n ADMIN_PLUGIN = 'ADMIN_PLUGIN',\n REHRIG_VISION = 'REHRIG_VISION',\n HOTWIRE = 'HOTWIRE',\n GOOGLE_SHEET = 'GOOGLE_SHEET',\n CONDITIONAL_REDIRECT = 'CONDITIONAL_REDIRECT',\n GOOGLE_PLACES = 'GOOGLE_PLACES',\n REHRIG_BARRIE_ADDRESS_DYNAMO_DB = 'REHRIG_BARRIE_ADDRESS_DYNAMO_DB',\n GUND = 'GUND',\n KLAVIYO = 'KLAVIYO',\n REHRIG_VISION_TRACK = 'REHRIG_VISION_TRACK',\n STANFORD_RD = 'STANFORD_RD',\n}\n\nexport enum PluginStatus {\n ACTIVE = 'ACTIVE',\n INACTIVE = 'INACTIVE',\n SUSPENDED = 'SUSPENDED',\n}\n\nexport enum PricePlanName {\n FREE = 'free',\n PAYASYOUGO = 'payAsYouGo',\n ADVANCED = 'advanced',\n PRO = 'pro',\n ENTERPRISE_CUSTOM = 'enterpriseCustom',\n UNLIMITED = 'unlimited',\n ENGAGE_STARTER_MONTHLY = 'engageStarterMonthly',\n ENGAGE_STARTER_YEARLY = 'engageStarterYearly',\n ENGAGE_PRO_MONTHLY = 'engageProMonthly',\n ENGAGE_PRO_YEARLY = 'engageProYearly',\n ENGAGE_PREMIUM_MONTHLY = 'engagePremiumMonthly',\n ENGAGE_PREMIUM_YEARLY = 'engagePremiumYearly',\n ENGAGE_ENTERPRISE_CUSTOM = 'engageEnterpriseCustom',\n ENGAGE_ADDON = 'engageAddon',\n}\n\nexport enum PricePlanPaymentPeriod {\n MONTHLY = 'monthly',\n ANNUAL = 'annual',\n}\n\nexport enum PricePlanReporting {\n BASIC = 'basic',\n ADVANCED = 'advanced',\n basic = 'basic',\n advance = 'advanced',\n}\n\nexport enum PrintFormat {\n A3 = 'A3',\n A4 = 'A4',\n A5 = 'A5',\n LETTER = 'LETTER',\n LEGAL = 'LEGAL',\n}\n\nexport enum PrintMode {\n SINGLE = 'SINGLE',\n MULTIPLE = 'MULTIPLE',\n}\n\nexport enum PrintOrientation {\n PORTRAIT = 'PORTRAIT',\n LANDSCAPE = 'LANDSCAPE',\n}\n\nexport enum PrintTemplate {\n AVERY_5160 = 'AVERY_5160',\n AVERY_5163 = 'AVERY_5163',\n AVERY_94103 = 'AVERY_94103',\n AVERY_22806 = 'AVERY_22806',\n AVERY_22805 = 'AVERY_22805',\n OL914 = 'OL914',\n OL3012LP = 'OL3012LP',\n OL3012LPCustom = 'OL3012LPCustom',\n CLOUD_TAGS_15 = 'CLOUD_TAGS_15',\n CLOUD_TAGS_20 = 'CLOUD_TAGS_20',\n LUGGAGE_TAGS_SINGLE = 'LUGGAGE_TAGS_SINGLE',\n LUGGAGE_TAGS_5_X_5 = 'LUGGAGE_TAGS_5_X_5',\n CT_8_X_6_GRIPPER = 'CT_8_X_6_GRIPPER',\n MINI_CLOUD_TAGS_4_X_3 = 'MINI_CLOUD_TAGS_4_X_3',\n}\n\nexport enum PrintUnit {\n IN = 'IN',\n CM = 'CM',\n MM = 'MM',\n PT = 'PT',\n}\n\nexport enum ProjectSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n SCAN_COUNT = 'SCAN_COUNT',\n QR_CODE_COUNT = 'QR_CODE_COUNT',\n CONTACT_COUNT = 'CONTACT_COUNT',\n ASSET_COUNT = 'ASSET_COUNT',\n}\n\nexport enum ProjectStatus {\n ACTIVE = 'ACTIVE',\n SUSPENDED = 'SUSPENDED',\n}\n\nexport enum QrCodeCornerDotTypes {\n dot = 'dot',\n square = 'square',\n}\n\nexport enum QrCodeCornerSquareTypes {\n dot = 'dot',\n square = 'square',\n extra_rounded = 'extra-rounded',\n}\n\nexport enum QrCodeDotTypes {\n classy = 'classy',\n classy_rounded = 'classy-rounded',\n dots = 'dots',\n extra_rounded = 'extra-rounded',\n rounded = 'rounded',\n square = 'square',\n}\n\nexport enum QrCodeDynamicRedirectType {\n NO_SCAN_ID = 'NO_SCAN_ID',\n SCAN_ID_IN_PATH_PARAMETER = 'SCAN_ID_IN_PATH_PARAMETER',\n SCAN_ID_IN_QUERY_STRING_PARAMETER = 'SCAN_ID_IN_QUERY_STRING_PARAMETER',\n CUSTOM_QUERY_STRING_PARAMETER = 'CUSTOM_QUERY_STRING_PARAMETER',\n}\n\nexport enum QrCodeErrorCorrectionLevel {\n L = 'L',\n M = 'M',\n Q = 'Q',\n H = 'H',\n}\n\nexport enum QrCodeGradientTypes {\n linear = 'linear',\n radial = 'radial',\n}\n\nexport enum QrCodeIntentType {\n STATIC_REDIRECT = 'STATIC_REDIRECT',\n DYNAMIC_REDIRECT = 'DYNAMIC_REDIRECT',\n DYNAMIC_REDIRECT_TO_APP = 'DYNAMIC_REDIRECT_TO_APP',\n}\n\nexport enum QrCodeLocatorKeyType {\n SHORT_URL = 'SHORT_URL',\n HASHED_ID = 'HASHED_ID',\n SECURE_ID = 'SECURE_ID',\n}\n\nexport enum QrCodeSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n SCAN_COUNT = 'SCAN_COUNT',\n}\n\nexport enum QrCodeStatus {\n ACTIVE = 'ACTIVE',\n INACTIVE = 'INACTIVE',\n SUSPENDED = 'SUSPENDED',\n UNSAFE = 'UNSAFE',\n}\n\nexport enum QrCodeType {\n PNG = 'PNG',\n JPEG = 'JPEG',\n SVG = 'SVG',\n png = 'png',\n jpeg = 'jpeg',\n svg = 'svg',\n}\n\nexport enum QueryConditions {\n EQUALS = 'EQUALS',\n LESS_THAN = 'LESS_THAN',\n LESS_THAN_EQUAL = 'LESS_THAN_EQUAL',\n GREATER_THAN = 'GREATER_THAN',\n GREATER_THAN_EQUAL = 'GREATER_THAN_EQUAL',\n BETWEEN = 'BETWEEN',\n BEGINS_WITH = 'BEGINS_WITH',\n}\n\nexport enum ScanTimelineOptions {\n DAILY = 'DAILY',\n HOURLY = 'HOURLY',\n}\n\nexport enum StickerShape {\n SQUARE = 'SQUARE',\n CIRCLE = 'CIRCLE',\n RECTANGLE = 'RECTANGLE',\n}\n\nexport enum TagActions {\n ACTIVATED = 'ACTIVATED',\n MODIFIED = 'MODIFIED',\n}\n\nexport enum TagStates {\n ACTIVE = 'ACTIVE',\n INACTIVE = 'INACTIVE',\n USER_INFO_COLLECTION = 'USER_INFO_COLLECTION',\n}\n\nexport enum UserCredentialsStatus {\n COMPROMISED = 'COMPROMISED',\n CONFIRMED = 'CONFIRMED',\n LEGACY = 'LEGACY',\n NEW_EMAIL = 'NEW_EMAIL',\n NEW_EMAIL_CONFIRMED = 'NEW_EMAIL_CONFIRMED',\n NEW_PASSWORD = 'NEW_PASSWORD',\n SUSPENDED = 'SUSPENDED',\n UNCONFIRMED = 'UNCONFIRMED',\n CONFIRMED_NO_PASSWORD = 'CONFIRMED_NO_PASSWORD',\n CONFIRMED_SSO = 'CONFIRMED_SSO',\n}\n\nexport enum UserGroups {\n appuser = 'appuser',\n appadmin = 'appadmin',\n}\n\nexport enum UserMediaFileTypes {\n pdf = 'pdf',\n jpg = 'jpg',\n HEIC = 'HEIC',\n heic = 'heic',\n png = 'png',\n mov = 'mov',\n mp4 = 'mp4',\n jpeg = 'jpeg',\n ttf = 'ttf',\n otf = 'otf',\n woff = 'woff',\n woff2 = 'woff2',\n csv = 'csv',\n json = 'json',\n gif = 'gif',\n bmp = 'bmp',\n webp = 'webp',\n svg = 'svg',\n tiff = 'tiff',\n webm = 'webm',\n ogg = 'ogg',\n avi = 'avi',\n mpeg = 'mpeg',\n css = 'css',\n}\n\nexport enum UserMediaSortingTypes {\n MODIFIED = 'MODIFIED',\n NAME = 'NAME',\n FILE_TYPE = 'FILE_TYPE',\n CATEGORY = 'CATEGORY',\n}\n\nexport enum UserSettingsDomain {\n DASHBOARD = 'DASHBOARD',\n}\n\n// APPLICATION ENTITIES\n\nexport interface Account {\n accountId: string\n accountStatus?: AccountStatus\n assetCount: number\n campaignStatus?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface AccountAuth {\n accountId: string\n clientId: string\n created?: string | Date | number | null\n encryptedClientSecret: string\n modified?: string | Date | number | null\n prompt?: string | null\n tenantId?: string | null\n type: AuthTypes\n}\n\nexport interface AccountByAccountId {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface AccountByAccountStatus {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n accountStatus: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface AccountByAssetCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n assetCount: number\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface AccountByClientExec {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n clientExec: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface AccountByCompanyName {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n companyName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface AccountByContactCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n contactCount: number\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface AccountByDynamicQRCodeCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n dynamicQrCodeCount: number\n modified?: string | Date | number | null\n}\n\nexport interface AccountByLastActivity {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n lastActivity: string | Date | number\n modified?: string | Date | number | null\n}\n\nexport interface AccountByPricePlanName {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n pricePlanName: string\n}\n\nexport interface AccountByProductName {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n productName: string\n timestamp: string | Date | number\n}\n\nexport interface AccountByScanCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n scanCount: number\n}\n\nexport interface AccountBySmsCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n smsCount: number\n}\n\nexport interface AccountByStaticQRCodeCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n staticQrCodeCount: number\n}\n\nexport interface AccountByTimestamp {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface AccountByUserCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n userCount: number\n}\n\nexport interface AccountDomain {\n accountId: string\n cnameValue?: string | null\n created?: string | Date | number | null\n customDomain: string\n hostedZoneId?: string | null\n modified?: string | Date | number | null\n nameServers?: Array<any> | null\n projectIds?: Array<any> | null\n status?: DomainStatus\n stepSchedulerId?: string | null\n title?: string | null\n type?: AccountDomainTypes\n}\n\nexport interface AccountDomainByType {\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n customDomain: string\n modified?: string | Date | number | null\n timestamp: string | Date | number\n type: string\n}\n\nexport interface AccountEmailContact {\n accountId: string\n contactId: string\n created?: string | Date | number | null\n email: string\n modified?: string | Date | number | null\n}\n\nexport interface AccountInstalledApp {\n accountId: string\n appAccountId: string\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n ownerAccountId?: string | null\n}\n\nexport interface AccountInvitation {\n accountId: string\n companyName?: string | null\n created?: string | Date | number | null\n email: string\n expiresAt?: string | Date | number | null\n firstName: string\n invitationId: string\n lastName: string\n modified?: string | Date | number | null\n sendersFirstName: string\n sendersLastName: string\n sendersUserId?: string | null\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface AccountInvitationRequestBody {\n email: string\n firstName: string\n lastName: string\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface AccountPhoneContact {\n accountId: string\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n phone: string\n}\n\nexport interface AccountPlugin {\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n isEnabled?: boolean\n modified?: string | Date | number | null\n pluginConfig?: NestedKeyValueObject\n pluginId: string\n}\n\nexport interface AccountPublishedApp {\n appId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n ownerAccountId: string\n}\n\nexport interface AccountResponse extends Account {\n accountId: string\n accountStatus?: AccountStatus\n assetCount: number\n campaignStatus?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n currentPeriod: PricePlanPeriod\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n pricePlan: PricePlan\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface AccountScan {\n accountId: string\n assetId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n scanId: string\n}\n\nexport interface AccountSmsCampaign {\n accountId: string\n campaignInfo?: SmsCampaignRequest | null\n campaignStatus?: string | null\n created?: string | Date | number | null\n errorCode?: string | null\n lastFetchedAt?: string | Date | number | null\n modified?: string | Date | number | null\n rejectionReason?: string | null\n twilioAccountSid: string\n twilioPhoneNumber?: string | null\n twilioPhoneNumberSid?: string | null\n}\n\nexport interface AccountUser {\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n userId: string\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface ApiKey {\n apiKeyId: string\n created?: string | Date | number | null\n description?: string | null\n key: string\n modified?: string | Date | number | null\n name: string\n}\n\nexport interface ApiKeyCredentials {\n algorithm?: string\n apiKeyId: string\n created?: string | Date | number | null\n description?: string | null\n invalidAttemptCount: number\n key: string\n modified?: string | Date | number | null\n name: string\n secret?: string | null\n status: string\n}\n\nexport interface ApiKeySessionResponseBody {\n apiKeyId: string\n expires: string | Date | number\n scope: AuthTokenScope\n}\n\nexport interface App {\n appDetailMedia?: string[] | null\n appId: string\n appName: string\n appPrice: number\n appStoreThumbnail?: string | null\n appWebhook?: string | null\n bannerImage?: string | null\n cardImage?: string | null\n categories?: Array<any> | null\n created?: string | Date | number | null\n description?: string | null\n featured?: boolean\n features?: string | null\n heroImage?: string | null\n isPublished?: boolean\n keywords?: Array<any> | null\n logo?: string | null\n modified?: string | Date | number | null\n ownerAccountId: string\n pricePlanPoints?: Array<any> | null\n tagline?: string | null\n uiUrl: string\n website?: string | null\n}\n\nexport interface AppAccount {\n appAccountId: string\n appId: string\n appName: string\n assetCount: number\n contactCount: number\n created?: string | Date | number | null\n dynamicQrCodeCount: number\n emailCount: number\n lastScanId?: string | null\n mainAccountId: string\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n userCount: number\n webSessionCount?: number | null\n}\n\nexport interface AppBasicDetails {\n appAccountId: string\n appId: string\n appLogo?: string | null\n appName: string\n mainAccountId: string\n}\n\nexport interface AppByName {\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface AppByTimestamp {\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface Asset {\n appAccountId?: string | null\n appId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n category?: string | null\n childAssets?: NestedKeyValueObject | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n dynamicQrCodeCount: number\n isValidChildAssets?: boolean | null\n isValidCustomAttributes?: boolean | null\n lastCommittedCustomAttributes?: NestedKeyValueObject | null\n lastGeolocationScanTime?: string | Date | number | null\n lastScanGeolocationCoordinates?: string | null\n lastScanId?: string | null\n lastScanLocationCoordinates?: string | null\n lastScanTime?: string | Date | number | null\n locationId?: string | null\n mediaCount?: number | null\n mediaIds?: Array<any> | null\n modified?: string | Date | number | null\n name: string\n parentAssetId?: string | null\n projectId: string\n qrCodeLinks?: Array<any> | null\n scanCount: number\n state?: string | null\n staticQrCodeCount: number\n thumbnails?: Array<any> | null\n userMedias?: UserMedia[] | null\n webSessionCount?: number | null\n willCreateSession?: boolean | null\n}\n\nexport interface AssetByAssetTypeNameAssetName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetName: string\n assetTypeId?: string | null\n assetTypeName: string\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n}\n\nexport interface AssetByNumberCustomAttribute {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n indexValue: number\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface AssetByStateAssetTypeName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n assetTypeName: string\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n state?: string\n timestamp: string | Date | number\n}\n\nexport interface AssetByStateAssetTypeNameAssetName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetName: string\n assetTypeId?: string | null\n assetTypeName: string\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n state?: string\n timestamp: string | Date | number\n}\n\nexport interface AssetByStateName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetName: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n state?: string\n timestamp: string | Date | number\n}\n\nexport interface AssetByStateNumberCustomAttribute {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n indexValue: number\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n state: string\n}\n\nexport interface AssetByStateQrCodeCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeCount: number\n state?: string\n}\n\nexport interface AssetByStateScanCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n scanCount: number\n state?: string\n}\n\nexport interface AssetByStateStringCustomAttribute {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n indexValue?: string | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n state: string\n}\n\nexport interface AssetByStateTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n state?: string\n timestamp: string | Date | number\n}\n\nexport interface AssetByStringCustomAttribute {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n indexValue?: string | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface AssetContact {\n assetId: string\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n type?: string | null\n}\n\nexport interface AssetContactByNumberCustomAttribute {\n _prefix?: string\n assetId: string\n contactId: string\n created?: string | Date | number | null\n indexValue: number\n modified?: string | Date | number | null\n}\n\nexport interface AssetContactByRelationshipType {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n type: string\n}\n\nexport interface AssetContactByStringCustomAttribute {\n _prefix?: string\n assetId: string\n contactId: string\n created?: string | Date | number | null\n indexValue?: string | null\n modified?: string | Date | number | null\n}\n\nexport interface AssetFieldsObject {\n assetTypeId?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n locationId?: string | null\n name?: string | null\n qrCodes?: NestedQrCode[] | null\n state?: string | null\n willCreateSession?: boolean | null\n}\n\nexport interface AssetGraph {\n accountId: string\n appAccountId?: string | null\n assetGraphId: string\n created?: string | Date | number | null\n direction?: string\n edges?: AssetGraphEdge[] | null\n modified?: string | Date | number | null\n name: string\n nodes: AssetGraphNode[]\n projectId: string\n}\n\nexport interface AssetGraphByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetGraphId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n}\n\nexport interface AssetGraphEdge {\n source: string\n target: string\n}\n\nexport interface AssetGraphNode {\n assetId: string\n}\n\nexport interface AssetHistory {\n _timestamp: string | Date | number\n appAccountId?: string | null\n appId?: string | null\n assetId?: string | null\n assetTypeId?: string | null\n batchId?: string | null\n category?: string | null\n childAssets?: NestedKeyValueObject | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n dynamicQrCodeCount?: number | null\n expiresAt?: string | Date | number | null\n isValidChildAssets?: boolean | null\n isValidCustomAttributes?: boolean | null\n lastCommittedCustomAttributes?: NestedKeyValueObject | null\n lastGeolocationScanTime?: string | Date | number | null\n lastScanGeolocationCoordinates?: string | null\n lastScanId?: string | null\n lastScanLocationCoordinates?: string | null\n lastScanTime?: string | Date | number | null\n locationId?: string | null\n mediaCount?: number | null\n mediaIds?: Array<any> | null\n modified?: string | Date | number | null\n name?: string | null\n parentAssetId?: string | null\n projectId?: string | null\n qrCodeLinks?: Array<any> | null\n scanCount?: number | null\n state?: string | null\n staticQrCodeCount?: number | null\n thumbnails?: Array<any> | null\n userMedias?: UserMedia[] | null\n webSessionCount?: number | null\n willCreateSession?: boolean | null\n}\n\nexport interface AssetNeighbor {\n created?: string | Date | number | null\n modified?: string | Date | number | null\n source: string\n target: string\n type?: string\n}\n\nexport interface AssetType {\n accountId: string\n appAccountId?: string | null\n appId?: string | null\n assetTypeId: string\n category?: string | null\n childItems?: NestedKeyValueObject | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n instanceCount: number\n instanceProperties?: NestedKeyValueObject | null\n intent?: string | null\n isPreviouslyUsed?: boolean\n managedCount: number\n modified?: string | Date | number | null\n name: string\n staticProperties?: NestedKeyValueObject | null\n usabilityState: AssetTypeUsabilityState\n}\n\nexport interface AssetTypeByLocation {\n assetTypeId: string\n created?: string | Date | number | null\n instanceCount: number\n locationId: string\n locationName?: string | null\n managedCount: number\n modified?: string | Date | number | null\n}\n\nexport interface AssetTypeByStatusName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetTypeId: string\n assetTypeName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n state: string\n timestamp: string | Date | number\n}\n\nexport interface AssetTypeByStatusTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetTypeId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n state: string\n timestamp: string | Date | number\n}\n\nexport interface BadUrlAttempt {\n accountId: string\n appAccountId?: string | null\n assetContent: NestedKeyValueObject\n assetId: string\n badUrlAttemptId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId?: string | null\n qrCodeId: string\n timestamp: string | Date | number\n url: string\n}\n\nexport interface BadUrlAttemptByTimestamp {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n badUrlAttemptId?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId?: string | null\n qrCodeId?: string | null\n timestamp: string | Date | number\n url: string\n}\n\nexport interface BadUrlAttemptByUrl {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n badUrlAttemptId?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId?: string | null\n qrCodeId?: string | null\n timestamp: string | Date | number\n url: string\n}\n\nexport interface BadUrlUsage {\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n usageCount: number\n}\n\nexport interface BadUrlUsageByCreated {\n _GLOBAL: string\n _created: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n}\n\nexport interface BadUrlUsageByModified {\n _GLOBAL: string\n _modified: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n}\n\nexport interface BadUrlUsageByUrl {\n _GLOBAL: string\n _modified: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n}\n\nexport interface BadUrlUsageByUsageCount {\n _GLOBAL: string\n _modified: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n usageCount: number\n}\n\nexport interface Batch {\n accountId: string\n appAccountId?: string | null\n assetCount: number\n batchId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n lastPrinted?: string | Date | number | null\n modified?: string | Date | number | null\n name?: string | null\n projectId: string\n qrCodeCount: number\n source?: string | null\n tagTypeId?: string | null\n timesPrinted: number\n}\n\nexport interface BatchByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n batchId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n source?: string | null\n timestamp: string | Date | number\n}\n\nexport interface CareUIAccounByIdResponse extends Account {\n accountId: string\n accountStatus?: AccountStatus\n appId?: string | null\n appName?: string | null\n assetCount: number\n campaignStatus?: string | null\n clientExec?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n currentPeriod: PricePlanPeriod\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n ownerEmail: string\n ownerFirstName: string\n ownerLastName: string\n ownerMiddleName?: string | null\n paymentFailedDate?: string | null\n pricePlan: PricePlan\n pricePlanName: string\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface CareUIAccountInGetUserResponse {\n accountId: string\n companyName: string\n userRole?: string | null\n userRoleIds?: Array<any>\n}\n\nexport interface CareUIAppResponse {\n createdDate: string | Date | number\n id: string\n name: string\n}\n\nexport interface CareUIClientExecResponse {\n displayName: string\n id: string\n}\n\nexport interface CareUIPortalAccountResponse extends Account {\n accountId: string\n accountStatus?: AccountStatus\n adminUserName: string\n assetCount: number\n campaignStatus?: string | null\n clientExec?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n createdDate: string | Date | number\n currentPeriod: PricePlanPeriod\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastActivity?: string | Date | number | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n pricePlan: PricePlan\n pricePlanName: string\n productName: string\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface CareUIPortalUserResponse extends User {\n created?: string | Date | number | null\n createdDate: string | Date | number\n email: string\n firstName: string\n lastName: string\n middleName: string\n modified?: string | Date | number | null\n ssoIdentity?: NestedKeyValueObject | null\n userId: string\n}\n\nexport interface CareUIUserByIdResponse extends User {\n accounts: CareUIAccountInGetUserResponse[]\n created?: string | Date | number | null\n email: string\n firstName: string\n lastName: string\n middleName: string\n modified?: string | Date | number | null\n ssoIdentity?: NestedKeyValueObject | null\n userId: string\n}\n\nexport interface Contact {\n accountId: string\n appAccountId?: string | null\n appId?: string | null\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n firstName: string\n isVisible?: boolean | null\n lastCommittedAttributes?: NestedKeyValueObject | null\n lastName: string\n lastScan?: LastScan | null\n lastScanProjectName?: string | null\n lastSms?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName: string\n modified?: string | Date | number | null\n nickname: string\n scanCount: number\n type?: string | null\n}\n\nexport interface ContactAccountCustomConsent {\n accountId: string\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactAccountDataConsent {\n accountId: string\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactAccountEmailConsent {\n accountId: string\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactAccountSmsConsent {\n accountId: string\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactByNumberCustomAttribute {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n contactId: string\n created?: string | Date | number | null\n indexValue: number\n modified?: string | Date | number | null\n}\n\nexport interface ContactByStringCustomAttribute {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n contactId: string\n created?: string | Date | number | null\n indexValue?: string | null\n modified?: string | Date | number | null\n}\n\nexport interface ContactConsent {\n accountId?: string | null\n accountName?: string | null\n consentStatus?: ConsentStatus | null\n consentType?: ConsentType | null\n consented: boolean\n consentedAt: string | Date | number\n contactId?: string | null\n customAttributes?: NestedKeyValueObject | null\n projectId?: string | null\n projectName?: string | null\n url?: string | null\n urls?: string[] | null\n}\n\nexport interface ContactHistory {\n _timestamp: string | Date | number\n accountId?: string | null\n appAccountId?: string | null\n appId?: string | null\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n contactId?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n expiresAt?: string | Date | number | null\n firstName?: string | null\n isVisible?: boolean | null\n lastCommittedAttributes?: NestedKeyValueObject | null\n lastName?: string | null\n lastScan?: LastScan | null\n lastScanProjectName?: string | null\n lastSms?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName?: string | null\n modified?: string | Date | number | null\n nickname?: string | null\n scanCount?: number | null\n type?: string | null\n}\n\nexport interface ContactInvite {\n accountId: string\n appInviteUrl?: string | null\n companyName?: string | null\n created?: string | Date | number | null\n email: string\n expiresAt?: string | Date | number | null\n firstName: string\n invitationId: string\n invitedByUserId: string\n invitedByUserName?: string | null\n isConsumed?: boolean\n lastName: string\n modified?: string | Date | number | null\n projectId: string\n refreshCount: number\n userRole?: AccountUserRole | null\n}\n\nexport interface ContactMailingAddress {\n address?: string | null\n city?: string | null\n country?: string | null\n postalOrZip?: string | null\n provinceOrState?: string | null\n}\n\nexport interface ContactProjectCustomConsent {\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n projectId: string\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactProjectDataConsent {\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n projectId: string\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactProjectEmailConsent {\n accountId: string\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n projectId: string\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactProjectSmsConsent {\n accountId: string\n consentStatus: ConsentStatus\n consentedAt: string | Date | number\n contactId: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n projectId: string\n url?: string | null\n urls: string[]\n}\n\nexport interface ContactUser {\n accountId: string\n companyName?: string | null\n contactId: string\n created?: string | Date | number | null\n email: string\n firstName?: string | null\n invalidAttemptCount: number\n lastName?: string | null\n modified?: string | Date | number | null\n password?: string | null\n revokedAt?: string | Date | number | null\n status?: UserCredentialsStatus\n userRole?: AccountUserRole | null\n}\n\nexport interface CreditCard {\n brand: string\n country: string\n expMonth: number\n expYear: number\n last4: string\n postalCode: string\n}\n\nexport interface CustomAttribute {\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n customAttributeName: string\n fieldType: FieldType\n mappedCAName?: string | null\n modified?: string | Date | number | null\n}\n\nexport interface DomainMappedQRLocatorKey {\n accountId: string\n created?: string | Date | number | null\n customDomain: string\n locatorKey: string\n modified?: string | Date | number | null\n qrCodeId: string\n serializedLocatorKey: string\n}\n\nexport interface EmailInvitation {\n accountId: string\n created?: string | Date | number | null\n email: string\n expiresAt?: string | Date | number | null\n invitationId: string\n modified?: string | Date | number | null\n}\n\nexport interface InternalAccountByAccountId {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface InternalAccountByAccountStatus {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n accountStatus: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface InternalAccountByAssetCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n assetCount: number\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface InternalAccountByClientExec {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n clientExec: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface InternalAccountByCompanyName {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n companyName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface InternalAccountByContactCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n contactCount: number\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface InternalAccountByDynamicQRCodeCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n dynamicQrCodeCount: number\n modified?: string | Date | number | null\n}\n\nexport interface InternalAccountByLastActivity {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n lastActivity: string | Date | number\n modified?: string | Date | number | null\n}\n\nexport interface InternalAccountByPricePlanName {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n pricePlanName: string\n}\n\nexport interface InternalAccountByProductName {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n productName: string\n timestamp: string | Date | number\n}\n\nexport interface InternalAccountByScanCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n scanCount: number\n}\n\nexport interface InternalAccountBySmsCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n smsCount: number\n}\n\nexport interface InternalAccountByStaticQRCodeCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n staticQrCodeCount: number\n}\n\nexport interface InternalAccountByTimestamp {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface InternalAccountByUserCount {\n _GLOBAL: string\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n userCount: number\n}\n\nexport interface Invoice {\n amount: number\n downloadUrl?: string | null\n dueDate?: string | null\n id: string\n name: string\n paymentMethod?: CreditCard | null\n status?: InvoiceStatus\n}\n\nexport interface Job {\n accountId: string\n appAccountId?: string | null\n callbackUrl?: string | null\n childJobIds?: Array<any> | null\n created?: string | Date | number | null\n errorMessage?: NestedKeyValueObject | null\n expires?: string | Date | number | null\n expiresAt?: string | Date | number | null\n fileExpiry?: string | Date | number | null\n fileName?: string | null\n jobId: string\n modified?: string | Date | number | null\n name?: string | null\n outputUrl?: string | null\n outputUrls?: Array<any>\n parentJobId?: string | null\n progress?: number | null\n projectId?: string | null\n source?: string | null\n status?: JobStatus\n type: JobType\n}\n\nexport interface JobByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n jobId: string\n modified?: string | Date | number | null\n projectId?: string | null\n source?: string | null\n timestamp: string | Date | number\n}\n\nexport interface LastScan {\n assetId: string\n assetName: string\n browserName?: string | null\n browserVersion?: string | null\n cpuArchitecture?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n deviceModel?: string | null\n deviceType?: string | null\n deviceVendor?: string | null\n engineName?: string | null\n engineVersion?: string | null\n geolocationCityName?: string | null\n geolocationCountryCode?: string | null\n geolocationCountryName?: string | null\n geolocationLatitude?: string | null\n geolocationLongitude?: string | null\n geolocationPostalCode?: string | null\n geolocationRegionCode?: string | null\n geolocationRegionName?: string | null\n ipAddress?: string | null\n locationCityName?: string | null\n locationCountryCode?: string | null\n locationCountryName?: string | null\n locationLatitude?: string | null\n locationLongitude?: string | null\n locationPostalCode?: string | null\n locationRegionCode?: string | null\n locationRegionName?: string | null\n locationTimeZone?: string | null\n modified?: string | Date | number | null\n osName?: string | null\n osVersion?: string | null\n projectId: string\n qrCodeId?: string | null\n scanId: string\n scanTime: string | Date | number\n sessionId?: string | null\n userAgent?: string | null\n}\n\nexport interface Location {\n accountId: string\n address?: string | null\n appAccountId?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n isPreviouslyUsed?: boolean\n locationId: string\n modified?: string | Date | number | null\n name: string\n state?: string | null\n}\n\nexport interface LocationByStateName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n locationId: string\n locationName: string\n modified?: string | Date | number | null\n state: string\n timestamp: string | Date | number\n}\n\nexport interface LocationByStateTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n locationId: string\n locationName: string\n modified?: string | Date | number | null\n state: string\n timestamp: string | Date | number\n}\n\nexport interface LocationByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n locationId: string\n locationName: string\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface MostScannedAssetResponse {\n assetId?: string | null\n lastScanDate?: string | Date | number | null\n name: string\n projectId?: string | null\n todaysScansCount?: number | null\n totalScansCount?: number | null\n weeklyScansCount?: number | null\n}\n\nexport interface MultipartUploadPart {\n ETag?: string | null\n PartNumber?: number\n}\n\nexport interface NestedAsset {\n category?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n locationId?: string | null\n name: string\n qrCodes?: NestedQrCode[] | null\n state?: string | null\n willCreateSession?: boolean | null\n}\n\nexport interface NestedContact {\n asset?: NestedAsset | null\n assetId?: string | null\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n firstName?: string | null\n lastName?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName?: string | null\n nickname?: string | null\n type?: string | null\n}\n\nexport interface NestedQrCode {\n customQueryStringParameterName?: string\n dynamicRedirectType?: QrCodeDynamicRedirectType\n imageOptions?: QrCodeImageOptions\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n intentType?: QrCodeIntentType\n isAskingForGPS?: boolean | null\n locatorKeyType?: QrCodeLocatorKeyType\n serializedLocatorKey?: string | null\n status?: QrCodeStatus | null\n stylingTemplateId?: string | null\n validFrom?: string | Date | number | null\n validTo?: string | Date | number | null\n}\n\nexport interface NestedTypedAsset {\n category?: string | null\n childAssets?: NestedKeyValueObject | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n locationId?: string | null\n name?: string | null\n qrCodes?: NestedQrCode[] | null\n state?: string | null\n}\n\nexport interface NewAppByName {\n _GLOBAL: string\n _prefix?: string\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n ownerAccountId: string\n timestamp: string | Date | number\n}\n\nexport interface NewAppByTimestamp {\n _GLOBAL: string\n _prefix?: string\n appId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n ownerAccountId: string\n timestamp: string | Date | number\n}\n\nexport interface NewAssetByAssetType {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n assetTypeName: string\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n}\n\nexport interface NewAssetByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetName: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n}\n\nexport interface NewAssetByQrCodeCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeCount: number\n}\n\nexport interface NewAssetByScanCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n scanCount: number\n}\n\nexport interface NewAssetByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetTypeId?: string | null\n batchId?: string | null\n created?: string | Date | number | null\n locationId?: string | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n}\n\nexport interface NewAssetTypeByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetTypeId: string\n assetTypeName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface NewAssetTypeByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetTypeId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface NewLocationByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n locationId: string\n locationName: string\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface NewProjectByAssetCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetCount: number\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface NewProjectByContactCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n contactCount: number\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface NewProjectByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n projectName: string\n timestamp: string | Date | number\n}\n\nexport interface NewProjectByQrCodeCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeCount: number\n}\n\nexport interface NewProjectByScanCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n scanCount: number\n}\n\nexport interface NewProjectByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n timestamp: string | Date | number\n}\n\nexport interface NewPublishedAppByName {\n _GLOBAL: string\n _prefix?: string\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n ownerAccountId: string\n timestamp: string | Date | number\n}\n\nexport interface NewPublishedAppByTimestamp {\n _GLOBAL: string\n _prefix?: string\n appId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n ownerAccountId: string\n timestamp: string | Date | number\n}\n\nexport interface NewQrCodeByAssetName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetName: string\n batchId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId: string\n timestamp: string | Date | number\n}\n\nexport interface NewQrCodeByScanCount {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n batchId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId: string\n scanCount: number\n}\n\nexport interface NewQrCodeByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n batchId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId: string\n timestamp: string | Date | number\n}\n\nexport interface NewQrCodeLogoByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n qrCodeLogoId: string\n timestamp: string | Date | number\n}\n\nexport interface NewQrCodeStylingTemplateByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n stylingTemplateId: string\n stylingTemplateName: string\n timestamp: string | Date | number\n}\n\nexport interface NewQrCodeStylingTemplateByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n stylingTemplateId: string\n timestamp: string | Date | number\n}\n\nexport interface NewScanByAssetName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n assetName: string\n contactId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n scanId: string\n sessionId?: string | null\n timestamp: string | Date | number\n}\n\nexport interface NewScanByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n contactId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n scanId: string\n sessionId?: string | null\n timestamp: string | Date | number\n}\n\nexport interface PatchApp {\n appDetailMedia?: string[] | null\n appPrice?: number | null\n appStoreThumbnail?: string | null\n appWebhook?: string | null\n bannerImage?: string | null\n cardImage?: string | null\n categories?: Array<any> | null\n created?: string | Date | number | null\n description?: string | null\n featured?: boolean | null\n features?: string | null\n heroImage?: string | null\n isPublished?: boolean | null\n keywords?: Array<any> | null\n logo?: string | null\n modified?: string | Date | number | null\n pricePlanPoints?: Array<any> | null\n tagline?: string | null\n uiUrl?: string | null\n website?: string | null\n}\n\nexport interface PhoneSession {\n contactId: string\n contactPhone: string\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n modified?: string | Date | number | null\n smsId: string\n twilioPhone: string\n}\n\nexport interface Plugin {\n appId: string\n created?: string | Date | number | null\n icon: string\n installCount: number\n modified?: string | Date | number | null\n name: string\n pluginId: string\n status?: PluginStatus\n version?: number\n}\n\nexport interface PluginByModified {\n _GLOBAL: string\n _prefix?: string\n appId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n pluginId: string\n timestamp: string | Date | number\n}\n\nexport interface PluginByName {\n _GLOBAL: string\n _prefix?: string\n appId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n name: string\n pluginId: string\n timestamp: string | Date | number\n}\n\nexport interface PricePlan {\n annualPrice: number\n assets: number\n contacts: number\n created?: string | Date | number | null\n dataExport: boolean\n downgradeDate?: string | Date | number | null\n emails: number\n freeEmailPerMonth?: number | null\n freeSmsPerMonth?: number | null\n mms: number\n modified?: string | Date | number | null\n monthlyPrice: number\n name: string\n nextPricePlanName?: string | null\n paymentPeriod?: string | null\n pricePerAsset: number\n pricePerContact: number\n pricePerEmail: number\n pricePerSMS: number\n pricePlanId: string\n projects: number\n qrCodes: number\n reporting?: PricePlanReporting\n roleBasedManagement: boolean\n sms: number\n stripeCustomerId: string\n stripeSubscriptionId: string\n totalScans: number\n users: number\n visibleContacts?: number | null\n}\n\nexport interface PricePlanPeriod {\n assetsLimit?: number | null\n assetsTotal: number\n contactsLimit?: number | null\n contactsTotal: number\n created?: string | Date | number | null\n emailAmountCharged?: number | null\n emailsLimit?: number | null\n emailsSentThisPeriod?: number | null\n emailsTotal: number\n freeEmailPerMonth?: number | null\n freeSmsPerMonth?: number | null\n invoiceId?: string | null\n mmsAmountCharged?: number | null\n mmsLimit?: number | null\n mmsSentThisPeriod?: number | null\n mmsTotal: number\n modified?: string | Date | number | null\n period: string | Date | number\n periodEndDate: string | Date | number\n pricePlanId: string\n projectsLimit?: number | null\n projectsTotal: number\n qrCodesLimit?: number | null\n qrCodesTotal: number\n qrScansLimit?: number | null\n scansUsedTotal: number\n smsAmountCharged?: number | null\n smsLimit?: number | null\n smsSentThisPeriod?: number | null\n smsTotal: number\n status?: string | null\n usersLimit?: number | null\n usersTotal: number\n visibleContacts?: number | null\n}\n\nexport interface PrintJob {\n accountId: string\n appAccountId?: string | null\n assetIds?: Array<any> | null\n callbackUrl?: string | null\n created?: string | Date | number | null\n createdBy?: string | null\n errorMessage?: NestedKeyValueObject | null\n fileExpiry?: string | Date | number | null\n imageOptions?: QrCodeImageOptions | null\n lastPrintedAt?: string | Date | number | null\n modified?: string | Date | number | null\n name?: string\n numberOfQrCodes?: number | null\n outputUrl?: string | null\n outputUrls?: Array<any>\n parentJobId?: string | null\n printJobId: string\n printOptions?: PrintOptions | null\n printPageTemplateName?: string | null\n printStickerTemplateName?: string | null\n progress?: number | null\n projectId?: string | null\n serializedFabric?: NestedKeyValueObject | null\n sortField?: QrCodeSortingTypes | null\n source?: string | null\n status?: JobStatus\n stylingTemplateId?: string | null\n type?: JobType\n}\n\nexport interface PrintOptions {\n bleed?: boolean | null\n bottomCaptionLabel?: Label\n bottomCaptionLabelHorizontalOffset?: number | null\n bottomCaptionLabelVerticalOffset?: number | null\n bottomLabel?: Label\n customBottomCaptionLabel?: string | null\n customBottomLabel?: string | null\n customMaxLength?: number | null\n customMiddleLabel?: string | null\n customTopCaptionLabel?: string | null\n customTopLabel?: string | null\n fontColor?: string | null\n fontFamily?: string | null\n format?: PrintFormat | null\n horizontalMargin?: number | null\n horizontalOffset?: number | null\n horizontalPadding?: number | null\n isMiniBatch?: boolean | null\n largeFontSize?: number | null\n maxLength?: number | null\n middleLabel?: Label\n numberOfColumns?: number | null\n numberOfRows?: number | null\n orientation?: PrintOrientation\n pageSize?: Array<any> | null\n prefixLocatorKey?: boolean | null\n printMode?: PrintMode\n printPageTemplateId?: string | null\n printStickerTemplateId?: string | null\n printTemplate?: PrintTemplate | null\n qrCodeHorizontalOffset?: number | null\n qrCodeSize?: number | null\n qrCodeVerticalOffset?: number | null\n quantityPerQr?: number | null\n smallFontSize?: number | null\n stickerBackground?: string | null\n stickerShape?: StickerShape | null\n stickerSize?: Array<any> | null\n topCaptionLabel?: Label | null\n topCaptionLabelHorizontalOffset?: number | null\n topCaptionLabelVerticalOffset?: number | null\n topLabel?: Label\n topLabelMaxLength?: number | null\n topMarginBackground?: string | null\n unit?: PrintUnit\n verticalMargin?: number | null\n verticalOffset?: number | null\n verticalPadding?: number | null\n}\n\nexport interface PrintPageTemplate {\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n createdBy: string\n format?: PrintFormat | null\n horizontalMargin: number\n horizontalPadding: number\n isDeleted?: boolean | null\n modified?: string | Date | number | null\n name: string\n numberOfColumns: number\n numberOfRows: number\n orientation?: PrintOrientation | null\n pageSize: Array<any>\n printMode?: PrintMode | null\n printPageTemplateId: string\n printTemplate?: PrintTemplate | null\n stickerShape: StickerShape\n stickerSize: Array<any>\n unit?: PrintUnit\n verticalMargin: number\n verticalPadding: number\n}\n\nexport interface PrintPageTemplateByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n name: string\n printPageTemplateId: string\n timestamp: string | Date | number\n}\n\nexport interface PrintPageTemplateByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n printPageTemplateId: string\n timestamp: string | Date | number\n}\n\nexport interface PrintStickerTemplate {\n accountId: string\n appAccountId?: string | null\n bleed?: boolean | null\n created?: string | Date | number | null\n createdBy: string\n isDeleted?: boolean | null\n lastUsedAt?: string | Date | number | null\n modified?: string | Date | number | null\n name: string\n previewImage?: string | null\n printStickerTemplateId: string\n serializedFabric: NestedKeyValueObject\n stickerShape?: StickerShape\n stickerSize?: Array<any>\n unit?: PrintUnit\n}\n\nexport interface PrintStickerTemplateByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n name: string\n printStickerTemplateId: string\n timestamp: string | Date | number\n}\n\nexport interface PrintStickerTemplateByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n printStickerTemplateId: string\n timestamp: string | Date | number\n}\n\nexport interface Project {\n accountId: string\n appAccountId?: string | null\n appId?: string | null\n assetCount: number\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n customDomain?: string | null\n description?: string | null\n dynamicQrCodeCount: number\n lastScanId?: string | null\n mediaCount?: number | null\n micrositeCustomDomain?: string | null\n modified?: string | Date | number | null\n name: string\n projectId: string\n scanCount: number\n staticQrCodeCount: number\n status?: ProjectStatus\n webSessionCount?: number | null\n workflowCustomDomain?: string | null\n}\n\nexport interface ProjectAccount {\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface ProjectContact {\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface ProjectContactByNumberCustomAttribute {\n _prefix?: string\n contactId: string\n created?: string | Date | number | null\n indexValue: number\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface ProjectContactByStringCustomAttribute {\n _prefix?: string\n contactId: string\n created?: string | Date | number | null\n indexValue?: string | null\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface ProjectDomain {\n created?: string | Date | number | null\n customDomain: string\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface ProjectEmailContact {\n contactId: string\n created?: string | Date | number | null\n email: string\n modified?: string | Date | number | null\n projectId: string\n}\n\nexport interface ProjectPhoneContact {\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n phone: string\n projectId: string\n}\n\nexport interface ProjectScan {\n assetId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n scanId: string\n}\n\nexport interface PublishedAppByName {\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n}\n\nexport interface PublishedAppByTimestamp {\n appId: string\n appName: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n}\n\nexport interface QrCode {\n appAccountId?: string | null\n appId?: string | null\n assetId: string\n batchId?: string | null\n created?: string | Date | number | null\n customDomain?: string | null\n customQueryStringParameterName?: string\n dynamicRedirectType?: QrCodeDynamicRedirectType\n imageOptions?: QrCodeImageOptions\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n intentType?: QrCodeIntentType\n isAskingForGPS?: boolean | null\n locatorKey: string\n locatorKeyType?: QrCodeLocatorKeyType\n modified?: string | Date | number | null\n name: string\n projectId?: string | null\n qrCodeId: string\n qrDomain?: string | null\n scanCount: number\n serializedLocatorKey?: string | null\n status?: QrCodeStatus\n stylingTemplateId?: string | null\n validFrom?: string | Date | number | null\n validTo?: string | Date | number | null\n}\n\nexport interface QrCodeByIntent {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId: string\n batchId?: string | null\n created?: string | Date | number | null\n intent: string\n modified?: string | Date | number | null\n projectId: string\n qrCodeId: string\n timestamp: string | Date | number\n}\n\nexport interface QrCodeImage {\n data: string\n options?: QrCodeImageOptions\n}\n\nexport interface QrCodeImageOptions {\n background?: string\n backgroundGradientColors?: string | null\n backgroundGradientRotation?: number | null\n backgroundGradientType?: QrCodeGradientTypes | null\n cornerDotColor?: string | null\n cornerDotType?: QrCodeCornerDotTypes | null\n cornerSquareColor?: string | null\n cornerSquareType?: QrCodeCornerSquareTypes | null\n darkColor?: string | null\n dataUrl?: boolean\n dotType?: QrCodeDotTypes | null\n errorCorrectionLevel?: QrCodeErrorCorrectionLevel\n foreground?: string\n foregroundGradientColors?: string | null\n foregroundGradientRotation?: number | null\n foregroundGradientType?: QrCodeGradientTypes | null\n format?: QrCodeType\n lightColor?: string | null\n logo?: string | null\n logoMargin?: number\n margin?: number\n qrCodeLogoId?: string | null\n saveAsBlob?: boolean | null\n scale?: number\n version?: number | null\n width?: number\n}\n\nexport interface QrCodeImageOptionsNoDefaults {\n background?: string | null\n backgroundGradientColors?: string | null\n backgroundGradientRotation?: number | null\n backgroundGradientType?: QrCodeGradientTypes | null\n cornerDotColor?: string | null\n cornerDotType?: QrCodeCornerDotTypes | null\n cornerSquareColor?: string | null\n cornerSquareType?: QrCodeCornerSquareTypes | null\n darkColor?: string | null\n dataUrl?: boolean | null\n dotType?: QrCodeDotTypes | null\n errorCorrectionLevel?: QrCodeErrorCorrectionLevel | null\n foreground?: string | null\n foregroundGradientColors?: string | null\n foregroundGradientRotation?: number | null\n foregroundGradientType?: QrCodeGradientTypes | null\n format?: QrCodeType | null\n lightColor?: string | null\n logo?: string | null\n logoMargin?: number | null\n margin?: number | null\n qrCodeLogoId?: string | null\n saveAsBlob?: boolean | null\n scale?: number | null\n version?: number | null\n width?: number | null\n}\n\nexport interface QrCodeLink {\n created?: string | Date | number | null\n modified?: string | Date | number | null\n qrCodeId: string\n qrCodeLink: string\n}\n\nexport interface QrCodeLocator {\n created?: string | Date | number | null\n locatorKey: string\n modified?: string | Date | number | null\n qrCodeId: string\n}\n\nexport interface QrCodeLogo {\n accountId: string\n appAccountId?: string | null\n cacheControl?: boolean | null\n contentDisposition?: string | null\n contentType: string\n created?: string | Date | number | null\n createdBy: string\n expiresAt?: string | Date | number | null\n extension: string\n fileId?: string\n fileName?: string | null\n fileNameBase?: string\n fileType?: string | null\n from?: string | null\n hidden?: boolean\n lastModifiedBy?: string | null\n length?: number | null\n modified?: string | Date | number | null\n qrCodeLogoId?: string\n rangeTimestamp?: string | null\n state?: string\n to?: string | null\n url: string\n}\n\nexport interface QrCodeStylingTemplate {\n accountId: string\n appAccountId?: string | null\n created?: string | Date | number | null\n createdBy: string\n hidden?: boolean | null\n imageOptions?: QrCodeImageOptions\n lastModifiedBy: string\n modified?: string | Date | number | null\n name: string\n projectId?: string | null\n qrCodeLogo?: QrCodeLogo | null\n stylingTemplateId: string\n}\n\nexport interface RequestApp {\n appDetailMedia?: string[] | null\n appName: string\n appPrice: number\n appStoreThumbnail?: string | null\n appWebhook?: string | null\n bannerImage?: string | null\n cardImage?: string | null\n categories?: Array<any> | null\n created?: string | Date | number | null\n description?: string | null\n featured: boolean\n features?: string | null\n heroImage?: string | null\n isPublished: boolean\n keywords?: Array<any> | null\n logo?: string | null\n modified?: string | Date | number | null\n pricePlanPoints?: Array<any> | null\n tagline?: string | null\n uiUrl: string\n website?: string | null\n}\n\nexport interface RequestSessionAction {\n actionId?: string | null\n actionType?: string | null\n category?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n name?: string | null\n scanId?: string | null\n tags?: Array<any> | null\n timestamp?: string | Date | number | null\n willUpdateSession?: boolean\n}\n\nexport interface ReservedMappedQrLocatorKey {\n _prefix?: string\n created?: string | Date | number | null\n customDomain: string\n isSingle?: boolean\n isStart: boolean\n locatorKeyNumber: number\n modified?: string | Date | number | null\n pairLocatorKeyNumber: number\n prefix: string\n}\n\nexport interface ResponseAccountPlugin {\n accountId: string\n appAccountId?: string | null\n icon: string\n isEnabled?: boolean\n name: string\n pluginConfig?: NestedKeyValueObject\n pluginId: string\n}\n\nexport interface ResponseAsset {\n appAccountId?: string | null\n appId?: string | null\n assetId: string\n assetTypeId?: string | null\n assetTypeName?: string | null\n batchId?: string | null\n category?: string | null\n childAssets?: NestedKeyValueObject | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n customDomain?: string | null\n description?: string | null\n dynamicQrCodeCount: number\n isValidChildAssets?: boolean | null\n isValidCustomAttributes?: boolean | null\n lastGeolocationScanTime?: string | Date | number | null\n lastScan?: LastScan | null\n lastScanGeolocationCoordinates?: string | null\n lastScanId?: string | null\n lastScanLocationCoordinates?: string | null\n lastScanTime?: string | Date | number | null\n locationId?: string | null\n mediaIds?: Array<any>\n modified?: string | Date | number | null\n name: string\n parentAssetId?: string | null\n projectId: string\n projectName?: string | null\n qrCodes?: ResponseQrCode[] | null\n scanCount: number\n state?: string | null\n staticQrCodeCount: number\n thumbnails?: Array<any> | null\n userMedias?: UserMedia[] | null\n willCreateSession?: boolean | null\n}\n\nexport interface ResponseAssetGraph extends AssetGraph {\n accountId: string\n appAccountId?: string | null\n assetGraphId: string\n created?: string | Date | number | null\n direction?: string\n edges?: AssetGraphEdge[] | null\n modified?: string | Date | number | null\n name: string\n nodes: ResponseAssetGraphNode[]\n projectId: string\n}\n\nexport interface ResponseAssetGraphNode extends AssetGraphNode {\n assetId: string\n name?: string | null\n}\n\nexport interface ResponseBodyUser {\n created: string | Date | number\n email: string\n expiresAt?: string | Date | number | null\n firstName: string\n invitationId?: string | null\n lastName: string\n middleName: string\n userId?: string | null\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface ResponseQrCode {\n appAccountId?: string | null\n appId?: string | null\n assetId: string\n created?: string | Date | number | null\n customDomain?: string | null\n dynamicRedirectType?: QrCodeDynamicRedirectType\n image: QrCodeImage\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n intentType?: QrCodeIntentType\n isAskingForGPS?: boolean | null\n locatorKey: string\n locatorKeyType?: QrCodeLocatorKeyType\n modified?: string | Date | number | null\n name?: string | null\n projectId?: string | null\n qrCodeId: string\n qrCodeLinks?: Array<any> | null\n scanCount: number\n serializedLocatorKey?: string | null\n status?: QrCodeStatus\n stylingTemplateId?: string | null\n validFrom?: string | Date | number | null\n validTo?: string | Date | number | null\n}\n\nexport interface ResponseSession {\n accountId?: string | null\n appAccountId?: string | null\n assetId?: string | null\n category?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n endTime?: string | Date | number | null\n lastActionId?: string | Date | number | null\n lastScanId?: string | null\n lastSessionAction?: SessionAction | null\n modified?: string | Date | number | null\n newTags?: Array<any> | null\n projectId?: string | null\n qrCodeId?: string | null\n sessionActions?: SessionAction[] | null\n sessionId?: string | null\n tagCounter?: number | null\n tags?: Array<any> | null\n}\n\nexport interface Scan {\n assetId: string\n assetName: string\n browserName?: string | null\n browserVersion?: string | null\n cpuArchitecture?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n deviceModel?: string | null\n deviceType?: string | null\n deviceVendor?: string | null\n engineName?: string | null\n engineVersion?: string | null\n geolocationCityName?: string | null\n geolocationCountryCode?: string | null\n geolocationCountryName?: string | null\n geolocationLatitude?: string | null\n geolocationLongitude?: string | null\n geolocationPostalCode?: string | null\n geolocationRegionCode?: string | null\n geolocationRegionName?: string | null\n ipAddress?: string | null\n locationCityName?: string | null\n locationCountryCode?: string | null\n locationCountryName?: string | null\n locationLatitude?: string | null\n locationLongitude?: string | null\n locationPostalCode?: string | null\n locationRegionCode?: string | null\n locationRegionName?: string | null\n locationTimeZone?: string | null\n modified?: string | Date | number | null\n osName?: string | null\n osVersion?: string | null\n projectId: string\n qrCodeId?: string | null\n scanId: string\n scanTime: string | Date | number\n sessionId?: string | null\n userAgent?: string | null\n}\n\nexport interface ScanContact {\n assetId: string\n assetName: string\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n scanId: string\n}\n\nexport interface SessionAction {\n accountId: string\n actionId: string\n actionType?: string | null\n appAccountId?: string | null\n assetId: string\n category?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n modified?: string | Date | number | null\n name?: string | null\n projectId: string\n qrCodeId: string\n scanId?: string | null\n sessionId: string\n tags?: Array<any> | null\n}\n\nexport interface SessionActionByActionType {\n _prefix?: string\n accountId: string\n actionId: string\n actionType?: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId?: string | null\n sessionId: string\n timestamp: string | Date | number\n}\n\nexport interface SessionActionByCategory {\n _prefix?: string\n accountId: string\n actionId: string\n appAccountId?: string | null\n assetId?: string | null\n category?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId?: string | null\n sessionId: string\n timestamp: string | Date | number\n}\n\nexport interface SessionActionByName {\n _prefix?: string\n accountId: string\n actionId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n name?: string\n projectId: string\n qrCodeId?: string | null\n sessionId: string\n timestamp: string | Date | number\n}\n\nexport interface SessionActionByTimestamp {\n _prefix?: string\n accountId: string\n actionId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId?: string | null\n sessionId: string\n timestamp: string | Date | number\n}\n\nexport interface Sms {\n body: string\n contactId: string\n created?: string | Date | number | null\n delivered?: boolean | null\n deliveredAt?: string | Date | number | null\n from: string\n inbound: boolean\n modified?: string | Date | number | null\n price?: number | null\n priceUnit: string\n projectId: string\n responses?: SmsResponse[] | null\n smsId: string\n smsTemplateName?: string | null\n status?: string | null\n to: string\n}\n\nexport interface SmsCampaignRequest {\n businessCity: string\n businessContactEmail: string\n businessContactFirstName: string\n businessContactLastName: string\n businessContactPhone: string\n businessCountry?: string\n businessName: string\n businessPostalCode: string\n businessStateProvinceRegion: string\n businessStreetAddress2?: string | null\n businessStreetAddress: string\n businessWebsite: string\n messageVolume?: string\n productionMessageSample: string\n useCaseCategories: CampaignUseCaseCategory[]\n useCaseSummary: string\n}\n\nexport interface SmsResponse {\n body: string\n contactPhone: string\n smsId: string\n twilioPhone: string\n}\n\nexport interface SmsTemplate {\n body?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n responseUrl?: string | null\n smsTemplateName: string\n statusUrl?: string | null\n}\n\nexport interface StepScheduler {\n accountId: string\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n modified?: string | Date | number | null\n retryCount: number\n secondsInterval: number\n stepSchedulerId: string\n targetEntityType: string\n targetPkSk: string\n}\n\nexport interface TagCreationAccount {\n _GLOBAL?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n productLine: string\n}\n\nexport interface TagType {\n accountId: string\n commonProperties?: NestedKeyValueObject | null\n created?: string | Date | number | null\n imageOptions?: QrCodeImageOptions | null\n incrementor?: Array<any>\n intent: string\n isAskingForGPS?: boolean\n isUsingPrefixValues?: boolean\n leadingCharacter: string\n modified?: string | Date | number | null\n name: string\n packSize: number\n prefixValues?: Array<any>\n printOptions: NestedKeyValueObject\n startingState?: TagStates\n stylingTemplateId?: string | null\n tagTypeId: string\n}\n\nexport interface TagTypeByLeadingChar {\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n leadingCharacter: string\n modified?: string | Date | number | null\n tagTypeId: string\n timestamp: string | Date | number\n}\n\nexport interface TagTypeByName {\n _prefix?: string\n accountId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n name: string\n tagTypeId: string\n}\n\nexport interface TemporaryCode {\n accountId?: string | null\n appAccountId?: string | null\n codeId: string\n codeType?: string\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n expires?: string | Date | number | null\n expiresAt?: string | Date | number | null\n modified?: string | Date | number | null\n phoneCode?: string | null\n phoneNumber?: string | null\n status?: string\n}\n\nexport interface URLSafety {\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n isBlacklisted?: boolean\n isThreat?: boolean\n modified?: string | Date | number | null\n threatTypes?: Array<any> | null\n timesChecked: number\n url: string\n}\n\nexport interface URLSafetyByCreated {\n _GLOBAL: string\n _created: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n}\n\nexport interface URLSafetyByModified {\n _GLOBAL: string\n _modified: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n}\n\nexport interface URLSafetyByTimesChecked {\n _GLOBAL: string\n _modified: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timesChecked: number\n url: string\n}\n\nexport interface URLSafetyByUrl {\n _GLOBAL: string\n _modified: string | Date | number\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n url: string\n}\n\nexport interface User {\n created?: string | Date | number | null\n email: string\n firstName: string\n lastName: string\n middleName: string\n modified?: string | Date | number | null\n ssoIdentity?: NestedKeyValueObject | null\n userId: string\n}\n\nexport interface UserByEmail {\n _GLOBAL: string\n _prefix?: string\n created?: string | Date | number | null\n email: string\n modified?: string | Date | number | null\n userId: string\n}\n\nexport interface UserByTimestamp {\n _GLOBAL: string\n _prefix?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n timestamp: string | Date | number\n userId: string\n}\n\nexport interface UserMedia {\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n cacheControl?: boolean | null\n category?: string | null\n containsVirus?: boolean | null\n contentDisposition?: string | null\n contentType: string\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n extension: string\n fileId?: string\n fileName?: string | null\n fileNameBase?: string\n fileType: string\n from?: string | null\n hidden?: boolean | null\n lastScannedAt?: string | Date | number | null\n length?: number | null\n mediaId?: string\n modified?: string | Date | number | null\n name?: string | null\n projectId?: string | null\n rangeTimestamp?: string | null\n scanId?: string | null\n size?: number | null\n state?: string\n to?: string | null\n url?: string | null\n}\n\nexport interface UserMediaByName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n mediaId: string\n modified?: string | Date | number | null\n name?: string\n projectId?: string | null\n scanId?: string | null\n timestamp: string | Date | number\n}\n\nexport interface UserMediaByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n mediaId: string\n modified?: string | Date | number | null\n projectId?: string | null\n scanId?: string | null\n timestamp: string | Date | number\n}\n\nexport interface UserMediaByTypeName {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n fileType: string\n mediaId: string\n modified?: string | Date | number | null\n name?: string\n projectId?: string | null\n scanId?: string | null\n timestamp: string | Date | number\n}\n\nexport interface UserMediaByTypeTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n fileType?: string\n mediaId: string\n modified?: string | Date | number | null\n projectId?: string | null\n scanId?: string | null\n timestamp: string | Date | number\n}\n\nexport interface UserRole {\n _GLOBAL: string\n created?: string | Date | number | null\n isApiKey?: boolean\n modified?: string | Date | number | null\n name: string\n permissions?: Permission[]\n roleId: string\n}\n\nexport interface UserSessionResponseBody {\n expires: string | Date | number\n scope: AuthTokenScope\n user?: User | null\n userId: string\n}\n\nexport interface UserSettings {\n created?: string | Date | number | null\n lastSelectedAccountId?: string | null\n modified?: string | Date | number | null\n path: UserSettingsDomain\n userId: string\n}\n\nexport interface WebSession {\n accountId: string\n appAccountId?: string | null\n assetId: string\n category?: string | null\n created?: string | Date | number | null\n customAttributes?: NestedKeyValueObject | null\n endTime?: string | Date | number | null\n lastActionId?: string | Date | number | null\n lastScanId?: string | null\n modified?: string | Date | number | null\n newTags?: Array<any> | null\n projectId: string\n qrCodeId: string\n sessionId: string\n tagCounter: number\n tags?: Array<any> | null\n}\n\nexport interface WebSessionByCategory {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n category?: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId?: string | null\n sessionId: string\n timestamp: string | Date | number\n}\n\nexport interface WebSessionByTimestamp {\n _prefix?: string\n accountId: string\n appAccountId?: string | null\n assetId?: string | null\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n qrCodeId?: string | null\n sessionId: string\n timestamp: string | Date | number\n}\n\nexport interface S3Object {\n accountId: string\n cacheControl?: boolean | null\n contentDisposition?: string | null\n contentType: string\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n extension: string\n fileId?: string\n fileName?: string | null\n fileNameBase?: string\n fileType?: string | null\n from?: string | null\n length?: number | null\n modified?: string | Date | number | null\n rangeTimestamp?: string | null\n state?: string\n to?: string | null\n url: string\n}\n\nexport interface S3Storage {\n bucket: string\n domain: string\n internalDomain: string\n partition: string\n}\n\nexport interface S3Image {\n accountId: string\n appAccountId?: string | null\n cacheControl?: boolean | null\n contentDisposition?: string | null\n contentType: string\n created?: string | Date | number | null\n expiresAt?: string | Date | number | null\n extension: string\n fileId?: string\n fileName?: string | null\n fileNameBase?: string\n fileType?: string | null\n from?: string | null\n imageId?: string\n internalUrl: string\n length?: number | null\n modified?: string | Date | number | null\n rangeTimestamp?: string | null\n s3Key: string\n state?: string\n to?: string | null\n url: string\n}\n\n// HANDLER INTERFACE TYPES\n\nexport interface GetApiKeySecretPathParameters {\n apiKeyId: string\n}\n\nexport interface GetApiKeySecretResponseBody {\n apiKeyId: string\n secret?: string | null\n}\n\nexport interface UpdateAppByAppIdPathParameters {\n appId: string\n}\n\nexport interface UpdateAppByAppIdRequestBody {\n app: PatchApp\n}\n\nexport interface UpdateAppByAppIdResponseBody {\n app: App\n}\n\nexport interface ResetApiKeySecretPathParameters {\n apiKeyId: string\n}\n\nexport interface ResetApiKeySecretResponseBody {\n apiKeyId: string\n secret: string\n}\n\nexport interface GetAppsQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n nameSearch?: string | null\n}\n\nexport interface GetAppsResponseBody {\n apps: App[]\n}\n\nexport interface GetApiKeyPathParameters {\n apiKeyId: string\n}\n\nexport interface GetApiKeyResponseBody {\n apiKeyId: string\n description?: string | null\n key: string\n name: string\n status: string\n}\n\nexport interface GetPublishedAppsQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n nameSearch?: string | null\n}\n\nexport interface GetPublishedAppsResponseBody {\n apps: App[]\n}\n\nexport interface LoadAppPathParameters {\n accountId: string\n appId: string\n}\n\nexport interface LoadAppResponseBody {\n app: App\n expires: string | Date | number\n sessionToken: string\n}\n\nexport interface DeleteAssetTypePathParameters {\n assetTypeId: string\n}\n\nexport interface DeleteAssetTypeResponseBody {\n assetType: AssetType\n}\n\nexport interface GetAssetTypeByAssetTypeIdPathParameters {\n assetTypeId: string\n}\n\nexport interface GetAssetTypeByAssetTypeIdQueryStringParameters {\n}\n\nexport interface GetAssetTypeByAssetTypeIdResponseBody {\n assetType: AssetType\n}\n\nexport interface UpdateApiKeyPathParameters {\n apiKeyId: string\n}\n\nexport interface UpdateApiKeyRequestBody {\n description?: string | null\n name?: string | null\n}\n\nexport interface UpdateApiKeyResponseBody {\n apiKeyId: string\n description?: string | null\n key: string\n name: string\n status: string\n}\n\nexport interface GetAppByAppIdPathParameters {\n appId: string\n}\n\nexport interface GetAppByAppIdResponseBody {\n app: App\n}\n\nexport interface GetAssetsByAssetTypePathParameters {\n assetTypeId: string\n}\n\nexport interface GetAssetsByAssetTypeQueryStringParameters {\n ascending?: boolean | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n includeThumbnails?: boolean\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n queryCondition?: QueryConditions | null\n sortField?: AssetByAssetTypeSortingTypes | null\n state?: string | null\n thumbnailMargin?: number | null\n thumbnailWidth?: number | null\n}\n\nexport interface GetAssetsByAssetTypeResponseBody {\n assetTypeId: string\n assets: Asset[]\n lastKey?: string | null\n numberOfAssets: number\n}\n\nexport interface GetAssetTypeCountAtLocationPathParameters {\n assetTypeId: string\n locationId: string\n}\n\nexport interface GetAssetTypeCountAtLocationResponseBody {\n assetTypeByLocation: AssetTypeByLocation\n}\n\nexport interface ComposeAssetByAssetTypePathParameters {\n assetId: string\n assetTypeId: string\n}\n\nexport interface ComposeAssetByAssetTypeRequestBody {\n category: string\n childItems?: NestedKeyValueObject | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n instanceProperties?: NestedKeyValueObject | null\n locationId?: string | null\n name?: string | null\n staticProperties?: NestedKeyValueObject | null\n totalCount: number\n usabilityState?: AssetTypeUsabilityState | null\n}\n\nexport interface ComposeAssetByAssetTypeResponseBody {\n asset: Asset\n assetId: string\n}\n\nexport interface CreateAssetByAssetTypePathParameters {\n assetTypeId: string\n}\n\nexport interface CreateAssetByAssetTypeRequestBody {\n asset: NestedTypedAsset\n projectId: string\n useCustomDomain?: boolean | null\n}\n\nexport interface CreateAssetByAssetTypeResponseBody {\n asset: ResponseAsset\n assetId: string\n assetType: AssetType\n}\n\nexport interface GetLocationCountsForAssetTypePathParameters {\n assetTypeId: string\n}\n\nexport interface GetLocationCountsForAssetTypeQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n sortField?: LocationSortingTypes | null\n state?: string | null\n}\n\nexport interface GetLocationCountsForAssetTypeResponseBody {\n assetType: AssetType\n assetTypesByLocation: AssetTypeByLocation[]\n count: number\n lastKey?: string | null\n}\n\nexport interface UpdateAssetTypePathParameters {\n assetTypeId: string\n}\n\nexport interface UpdateAssetTypeRequestBody {\n category?: string | null\n childItems?: NestedKeyValueObject | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n instanceProperties?: NestedKeyValueObject | null\n intent?: string | null\n name?: string | null\n staticProperties?: NestedKeyValueObject | null\n usabilityState?: AssetTypeUsabilityState | null\n}\n\nexport interface UpdateAssetTypeResponseBody {\n assetType: AssetType\n assetTypeId: string\n}\n\nexport interface UpdateAssetTypeCountAtLocationPathParameters {\n assetTypeId: string\n locationId: string\n}\n\nexport interface UpdateAssetTypeCountAtLocationRequestBody {\n count: number\n isDelta?: boolean\n}\n\nexport interface UpdateAssetTypeCountAtLocationResponseBody {\n assetType: AssetType\n assetTypeByLocation: AssetTypeByLocation\n}\n\nexport interface GetAssetGraphPathParameters {\n assetGraphId: string\n}\n\nexport interface GetAssetGraphResponseBody {\n assetGraph: ResponseAssetGraph\n}\n\nexport interface UpdateAssetGraphPathParameters {\n assetGraphId: string\n}\n\nexport interface UpdateAssetGraphRequestBody {\n direction?: string\n edges: Array<any>\n name: string\n nodes: Array<any>\n}\n\nexport interface UpdateAssetGraphResponseBody {\n assetGraph: AssetGraph\n}\n\nexport interface CreateContactByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface CreateContactByAssetIdRequestBody {\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n firstName?: string | null\n lastName?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName?: string | null\n nickname?: string | null\n type?: string | null\n}\n\nexport interface CreateContactByAssetIdResponseBody {\n asset: Asset\n assetContact: AssetContact\n assetId: string\n contact: Contact\n projectContact: ProjectContact\n}\n\nexport interface CreateQrCodeByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface CreateQrCodeByAssetIdRequestBody extends NestedQrCode {\n customQueryStringParameterName?: string\n dynamicRedirectType?: QrCodeDynamicRedirectType\n imageOptions?: QrCodeImageOptions\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n intentType?: QrCodeIntentType\n isAskingForGPS?: boolean | null\n locatorKeyType?: QrCodeLocatorKeyType\n qrCodes?: NestedQrCode[]\n serializedLocatorKey?: string | null\n status?: QrCodeStatus | null\n stylingTemplateId?: string | null\n validFrom?: string | Date | number | null\n validTo?: string | Date | number | null\n}\n\nexport interface CreateQrCodeByAssetIdResponseBody {\n asset: Asset\n assetId: string\n locatorKey: string\n qrCode: ResponseQrCode\n qrCodeId: string\n}\n\nexport interface GetAssetPathParameters {\n assetId: string\n}\n\nexport interface GetAssetQueryStringParameters {\n background?: string | null\n backgroundGradientColors?: string | null\n backgroundGradientRotation?: number | null\n backgroundGradientType?: QrCodeGradientTypes | null\n cornerDotColor?: string | null\n cornerDotType?: QrCodeCornerDotTypes | null\n cornerSquareColor?: string | null\n cornerSquareType?: QrCodeCornerSquareTypes | null\n darkColor?: string | null\n dataUrl?: boolean | null\n dotType?: QrCodeDotTypes | null\n errorCorrectionLevel?: QrCodeErrorCorrectionLevel | null\n foreground?: string | null\n foregroundGradientColors?: string | null\n foregroundGradientRotation?: number | null\n foregroundGradientType?: QrCodeGradientTypes | null\n format?: QrCodeType | null\n getUserMedias?: boolean\n lightColor?: string | null\n logo?: string | null\n logoMargin?: number | null\n margin?: number | null\n qrCodeLogoId?: string | null\n saveAsBlob?: boolean | null\n scale?: number | null\n stylingTemplateId?: string | null\n version?: number | null\n width?: number | null\n}\n\nexport interface GetAssetResponseBody {\n asset: ResponseAsset\n assetId: string\n}\n\nexport interface DeleteNeighborsByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface DeleteNeighborsByAssetIdRequestBody {\n neighbors: Array<any>\n}\n\nexport interface DeleteAssetGraphPathParameters {\n assetGraphId: string\n}\n\nexport interface DeleteAssetPathParameters {\n assetId: string\n}\n\nexport interface DeleteAssetResponseBody {\n asset: Asset\n}\n\nexport interface CreateNeighborsByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface CreateNeighborsByAssetIdRequestBody {\n neighbors: Array<any>\n}\n\nexport interface GetNeighborScanCountByAssetIdPathParameters {\n assetId: string\n neighborId: string\n}\n\nexport interface GetNeighborScanCountByAssetIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetNeighborScanCountByAssetIdResponseBody {\n scanCount: number\n}\n\nexport interface GetContactsByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetContactsByAssetIdQueryStringParameters {\n ascending?: boolean | null\n contactName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n email?: string | null\n lastKey?: string | null\n limit?: number | null\n phone?: string | null\n queryCondition?: QueryConditions | null\n sortField?: ContactAssetSortingTypes | null\n}\n\nexport interface GetContactsByAssetIdResponseBody {\n assetContacts: AssetContact[]\n assetId: string\n contacts: Contact[]\n lastKey?: string | null\n numberOfContacts: number\n}\n\nexport interface GetAssetHistoryByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetAssetHistoryByAssetIdQueryStringParameters {\n ascending?: boolean | null\n at?: string | Date | number | null\n from?: string | Date | number | null\n lastKey?: string | null\n limit?: number | null\n to?: string | Date | number | null\n}\n\nexport interface GetAssetHistoryByAssetIdResponseBody {\n assetId: string\n history: Asset[]\n lastKey?: string | null\n numberOfRecords: number\n}\n\nexport interface GetExternalNeighborScanCountByAssetIdPathParameters {\n assetId: string\n url: string\n}\n\nexport interface GetExternalNeighborScanCountByAssetIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetExternalNeighborScanCountByAssetIdResponseBody {\n scanCount: number\n}\n\nexport interface GetNeighborsByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetNeighborsByAssetIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetNeighborsByAssetIdResponseBody {\n lastKey?: string | null\n neighbors: Array<any>\n}\n\nexport interface GetScanExportByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetScanExportByAssetIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanExportByAssetIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface CreateQrCodesByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface CreateQrCodesByAssetIdRequestBody {\n qrCodes?: NestedQrCode[]\n}\n\nexport interface CreateQrCodesByAssetIdResponseBody {\n asset: Asset\n assetId: string\n locatorKeys: QrCodeLocator[]\n qrCodes: ResponseQrCode[]\n}\n\nexport interface GetScanLocationDataByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetScanLocationDataByAssetIdQueryStringParameters {\n displayMostRecentPerAsset?: boolean\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanLocationDataByAssetIdResponseBody {\n scansByGeolocation: NestedKeyValueObject\n scansByLocation: NestedKeyValueObject\n}\n\nexport interface GetQrCodesByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetQrCodesByAssetIdQueryStringParameters {\n ascending?: boolean | null\n background?: string | null\n backgroundGradientColors?: string | null\n backgroundGradientRotation?: number | null\n backgroundGradientType?: QrCodeGradientTypes | null\n cornerDotColor?: string | null\n cornerDotType?: QrCodeCornerDotTypes | null\n cornerSquareColor?: string | null\n cornerSquareType?: QrCodeCornerSquareTypes | null\n darkColor?: string | null\n dataUrl?: boolean | null\n dotType?: QrCodeDotTypes | null\n errorCorrectionLevel?: QrCodeErrorCorrectionLevel | null\n foreground?: string | null\n foregroundGradientColors?: string | null\n foregroundGradientRotation?: number | null\n foregroundGradientType?: QrCodeGradientTypes | null\n format?: QrCodeType | null\n includeQrCodeLinks?: boolean\n lastKey?: string | null\n lightColor?: string | null\n limit?: number | null\n logo?: string | null\n logoMargin?: number | null\n margin?: number | null\n qrCodeLogoId?: string | null\n saveAsBlob?: boolean | null\n scale?: number | null\n sortField?: QrCodeSortingTypes | null\n stylingTemplateId?: string | null\n version?: number | null\n width?: number | null\n}\n\nexport interface GetQrCodesByAssetIdResponseBody {\n assetId: string\n lastKey?: string | null\n numberOfQrCodes: number\n qrCodes: ResponseQrCode[]\n}\n\nexport interface GetScansByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetScansByAssetIdQueryStringParameters {\n ascending?: boolean\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetScansByAssetIdResponseBody {\n assetId: string\n lastKey?: string | null\n numberOfScans: number\n scans: Scan[]\n}\n\nexport interface UpdateAssetPathParameters {\n assetId: string\n}\n\nexport interface UpdateAssetRequestBody {\n assetTypeId?: string | null\n category?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n locationId?: string | null\n mediaIds?: Array<any> | null\n name?: string | null\n parentAssetId?: string | null\n state?: string | null\n willCreateSession?: boolean | null\n}\n\nexport interface UpdateAssetResponseBody {\n asset: Asset\n assetId: string\n assetType?: AssetType | null\n location?: Location | null\n}\n\nexport interface UnlinkContactFromAssetPathParameters {\n assetId: string\n contactId: string\n}\n\nexport interface LinkContactToAssetPathParameters {\n assetId: string\n contactId: string\n}\n\nexport interface LinkContactToAssetRequestBody {\n type?: string | null\n}\n\nexport interface LinkContactToAssetResponseBody {\n assetContact: AssetContact\n projectContact: ProjectContact\n}\n\nexport interface GetAssetsByBatchIdPathParameters {\n batchId: string\n}\n\nexport interface GetAssetsByBatchIdQueryStringParameters {\n ascending?: boolean | null\n assetTypeName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n includeThumbnails?: boolean\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n queryCondition?: QueryConditions | null\n sortField?: AssetSortingTypes | null\n state?: string | null\n thumbnailMargin?: number | null\n thumbnailWidth?: number | null\n}\n\nexport interface GetAssetsByBatchIdResponseBody {\n assets: Asset[]\n lastKey?: string | null\n numberOfAssets: number\n}\n\nexport interface CancelDowngradeRequestPathParameters {\n accountId: string\n}\n\nexport interface CancelDowngradeRequestResponseBody {\n}\n\nexport interface GetAppAccountPathParameters {\n appAccountId: string\n}\n\nexport interface GetAppAccountResponseBody extends AppAccount {\n appAccountId: string\n appId: string\n appName: string\n assetCount: number\n contactCount: number\n created?: string | Date | number | null\n dynamicQrCodeCount: number\n emailCount: number\n lastScanId?: string | null\n mainAccountId: string\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n userCount: number\n webSessionCount?: number | null\n}\n\nexport interface GetMainAccountByAppAccountIdPathParameters {\n appAccountId: string\n}\n\nexport interface GetMainAccountByAppAccountIdResponseBody extends Account {\n accountId: string\n accountStatus?: AccountStatus\n assetCount: number\n campaignStatus?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface DowngradePlanPathParameters {\n accountId: string\n}\n\nexport interface DowngradePlanRequestBody {\n planName: string\n}\n\nexport interface DowngradePlanResponseBody {\n}\n\nexport interface CancelSubscriptionPathParameters {\n accountId: string\n}\n\nexport interface CancelSubscriptionRequestBody {\n}\n\nexport interface CancelSubscriptionResponseBody {\n}\n\nexport interface ChangeSubscriptionPreviewPathParameters {\n accountId: string\n}\n\nexport interface ChangeSubscriptionPreviewQueryStringParameters {\n planName: string\n}\n\nexport interface ChangeSubscriptionPreviewResponseBody {\n preview: NestedKeyValueObject\n}\n\nexport interface CreateSetupIntentPathParameters {\n accountId: string\n}\n\nexport interface CreateSetupIntentRequestBody {\n appId?: string | null\n planName?: string | null\n updateBilling?: boolean\n}\n\nexport interface CreateSetupIntentResponseBody {\n setupIntent: string\n}\n\nexport interface GetBillingDetailsPathParameters {\n accountId: string\n}\n\nexport interface GetBillingDetailsResponseBody {\n billingDetails?: CreditCard | null\n}\n\nexport interface GetCurrentPeriodPathParameters {\n accountId: string\n}\n\nexport interface GetCurrentPeriodResponseBody {\n endDate: string\n startDate: string\n}\n\nexport interface GetAllAccountsQueryStringParameters {\n email?: string | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetAllAccountsResponseBody {\n accounts: Account[]\n lastKey?: string | null\n}\n\nexport interface CheckCustomLocatorKeyRangePathParameters {\n customDomain: string\n}\n\nexport interface CheckCustomLocatorKeyRangeQueryStringParameters {\n endingValue: number\n prefix: string\n startingValue: number\n}\n\nexport interface CheckCustomLocatorKeyRangeResponseBody {\n}\n\nexport interface GetUserMediasByAssetIdPathParameters {\n assetId: string\n}\n\nexport interface GetUserMediasByAssetIdQueryStringParameters {\n ascending?: boolean | null\n category?: string | null\n fileType?: string | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n sortField?: UserMediaSortingTypes | null\n}\n\nexport interface GetUserMediasByAssetIdResponseBody {\n assetId: string\n lastKey?: string | null\n userMedias: UserMedia[]\n}\n\nexport interface DeleteConsentByContactIdPathParameters {\n contactId: string\n}\n\nexport interface DeleteConsentByContactIdQueryStringParameters {\n consentStatus?: ConsentStatus\n consentType: ConsentType\n projectId?: string | null\n}\n\nexport interface DeleteConsentByContactIdResponseBody {\n consent: ContactConsent\n contactId: string\n}\n\nexport interface RetryCustomDomainPathParameters {\n customDomain: string\n}\n\nexport interface RetryCustomDomainResponseBody {\n accountDomain: AccountDomain\n}\n\nexport interface GetInvoicesPathParameters {\n accountId: string\n}\n\nexport interface GetInvoicesQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetInvoicesResponseBody {\n invoices: Invoice[]\n lastKey?: string | null\n}\n\nexport interface UpgradePlanPathParameters {\n accountId: string\n}\n\nexport interface UpgradePlanRequestBody {\n planName: string\n}\n\nexport interface UpgradePlanResponseBody {\n}\n\nexport interface DeleteContactPathParameters {\n contactId: string\n}\n\nexport interface DeleteContactResponseBody {\n contact: Contact\n}\n\nexport interface GetAssetsByContactIdPathParameters {\n contactId: string\n}\n\nexport interface GetAssetsByContactIdQueryStringParameters {\n ascending?: boolean | null\n includeThumbnails?: boolean\n lastKey?: string | null\n limit?: number | null\n thumbnailMargin?: number | null\n thumbnailWidth?: number | null\n type?: string | null\n}\n\nexport interface GetAssetsByContactIdResponseBody {\n assets: Asset[]\n contactId: string\n lastKey?: string | null\n numberOfAssets: number\n}\n\nexport interface DeleteCustomDomainPathParameters {\n customDomain: string\n}\n\nexport interface CreateConsentByContactIdPathParameters {\n contactId: string\n}\n\nexport interface CreateConsentByContactIdRequestBody {\n consentStatus?: ConsentStatus\n consentType: ConsentType\n consentedAt: string | Date | number\n projectId?: string | null\n url?: string | null\n urls?: string[]\n}\n\nexport interface CreateConsentByContactIdResponseBody {\n consent: ContactConsent\n contactId: string\n}\n\nexport interface GetConsentByContactIdPathParameters {\n contactId: string\n}\n\nexport interface GetConsentByContactIdQueryStringParameters {\n consentStatus?: ConsentStatus\n consentType?: ConsentType | null\n lastKey?: string | null\n limit?: number | null\n projectId?: string | null\n}\n\nexport interface GetConsentByContactIdResponseBody {\n consent: ContactConsent[]\n contactId: string\n lastKey?: string | null\n}\n\nexport interface GetScanLocationDataByContactIdPathParameters {\n contactId: string\n}\n\nexport interface GetScanLocationDataByContactIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanLocationDataByContactIdResponseBody {\n scansByGeolocation: NestedKeyValueObject\n scansByLocation: NestedKeyValueObject\n}\n\nexport interface GetScansByContactIdPathParameters {\n contactId: string\n}\n\nexport interface GetScansByContactIdResponseBody {\n scans: Scan[]\n}\n\nexport interface LinkContactToScanPathParameters {\n contactId: string\n scanId: string\n}\n\nexport interface LinkContactToScanRequestBody {\n type?: string | null\n}\n\nexport interface LinkContactToScanResponseBody extends ScanContact {\n assetId: string\n assetName: string\n contactId: string\n created?: string | Date | number | null\n modified?: string | Date | number | null\n projectId: string\n scanId: string\n}\n\nexport interface GetScanExportByContactIdPathParameters {\n contactId: string\n}\n\nexport interface GetScanExportByContactIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanExportByContactIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface GetContactExportByContactIdPathParameters {\n contactId: string\n}\n\nexport interface GetContactExportByContactIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetContactExportByContactIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface UpdateContactPathParameters {\n contactId: string\n}\n\nexport interface UpdateContactRequestBody {\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n firstName?: string | null\n lastName?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName?: string | null\n nickname?: string | null\n}\n\nexport interface UpdateContactResponseBody {\n contact: Contact\n contactId: string\n}\n\nexport interface DeleteJobPathParameters {\n jobId: string\n}\n\nexport interface DeleteJobResponseBody {\n job: Job\n}\n\nexport interface GetContactPathParameters {\n contactId: string\n}\n\nexport interface GetContactResponseBody {\n contact: Contact\n}\n\nexport interface CreateUserByInvitationIdPathParameters {\n invitationId: string\n}\n\nexport interface CreateUserByInvitationIdResponseBody {\n account: Account\n accountUser: AccountUser\n}\n\nexport interface GetInvitationPathParameters {\n invitationId: string\n}\n\nexport interface GetInvitationResponseBody {\n accountInvitation: AccountInvitation\n}\n\nexport interface DeletePrintJobPathParameters {\n printJobId: string\n}\n\nexport interface DeletePrintJobResponseBody {\n printJob: PrintJob\n}\n\nexport interface DeleteInvitationPathParameters {\n invitationId: string\n}\n\nexport interface DeleteInvitationResponseBody {\n accountInvitation: AccountInvitation\n emailInvitation?: EmailInvitation | null\n}\n\nexport interface GetJobPathParameters {\n jobId: string\n}\n\nexport interface GetJobResponseBody {\n job: Job\n}\n\nexport interface SendSupportEmailRequestBody {\n body: string\n captchaToken: string\n from: string\n subject?: string\n to?: OpenscreenEmails\n}\n\nexport interface CreateAssetCreationJobByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateAssetCreationJobByProjectIdRequestBody {\n assets?: AssetFieldsObject[] | null\n callbackUrl?: string | null\n commonProperties?: AssetFieldsObject | null\n fileId?: string | null\n}\n\nexport interface CreateAssetCreationJobByProjectIdResponseBody {\n batch: Batch\n job: Job\n}\n\nexport interface GetQrCodeLinkPathParameters {\n qrCodeLink: string\n}\n\nexport interface GetQrCodeLinkResponseBody {\n qrCodeLink: QrCodeLink\n}\n\nexport interface CreateAssetCreationPresignedUrlByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateAssetCreationPresignedUrlByProjectIdRequestBody {\n fileType?: AssetCreationFileTypes\n}\n\nexport interface CreateAssetCreationPresignedUrlByProjectIdResponseBody {\n file: File\n presignedUrl: string\n}\n\nexport interface InvokePrintJobByJobIdPathParameters {\n printJobId: string\n}\n\nexport interface InvokePrintJobByJobIdResponseBody {\n printJob: PrintJob\n}\n\nexport interface CreateContactByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateContactByProjectIdRequestBody {\n asset?: NestedAsset | null\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n firstName?: string | null\n lastName?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName?: string | null\n nickname?: string | null\n type?: string | null\n}\n\nexport interface CreateContactByProjectIdResponseBody {\n asset?: Asset | null\n assetContact?: AssetContact | null\n contact: Contact\n projectContact: ProjectContact\n projectId: string\n qrCodes?: QrCode[] | null\n}\n\nexport interface CreateAssetByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateAssetByProjectIdRequestBody extends NestedAsset {\n category?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n locationId?: string | null\n name: string\n qrCodes?: NestedQrCode[] | null\n state?: string | null\n useCustomDomain?: boolean | null\n willCreateSession?: boolean | null\n}\n\nexport interface CreateAssetByProjectIdResponseBody {\n asset: ResponseAsset\n projectId: string\n}\n\nexport interface CreateAssetGraphByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateAssetGraphByProjectIdRequestBody {\n edges: NestedKeyValueObject\n name: string\n nodes: NestedKeyValueObject\n}\n\nexport interface CreateAssetGraphByProjectIdResponseBody {\n assetGraph: AssetGraph\n}\n\nexport interface CreateSelfQueuePrintJobByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateSelfQueuePrintJobByProjectIdRequestBody {\n batchId?: string | null\n batchName?: string | null\n callbackUrl?: string | null\n imageOptions?: QrCodeImageOptions | null\n pageSize?: number | null\n printOptions: PrintOptions\n serializedFabric?: NestedKeyValueObject | null\n sortField?: QrCodeSortingTypes | null\n stylingTemplateId?: string | null\n}\n\nexport interface CreateSelfQueuePrintJobByProjectIdResponseBody {\n job: Job\n}\n\nexport interface CreateQrCodeByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateQrCodeByProjectIdRequestBody {\n imageOptions?: QrCodeImageOptions\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n status?: QrCodeStatus | null\n stylingTemplateId?: string | null\n}\n\nexport interface CreateQrCodeByProjectIdResponseBody {\n locatorKey: string\n projectId: string\n qrCode: QrCode\n qrCodeId: string\n}\n\nexport interface CreateAssetBatchValidationJobByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateAssetBatchValidationJobByProjectIdRequestBody {\n callbackUrl?: string | null\n fileId?: string | null\n trackFileId?: string | null\n trackJobId?: string | null\n}\n\nexport interface CreateAssetBatchValidationJobByProjectIdResponseBody {\n job: Job\n}\n\nexport interface CreateAssetsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateAssetsByProjectIdRequestBody {\n assets: AssetFieldsObject[]\n commonProperties?: AssetFieldsObject | null\n}\n\nexport interface CreateAssetsByProjectIdResponseBody {\n assets: ResponseAsset[]\n numberOfAssets: number\n projectId: string\n}\n\nexport interface CreateSmsTemplateByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateSmsTemplateByProjectIdRequestBody {\n body?: string | null\n responseUrl?: string | null\n smsTemplateName: string\n statusUrl?: string | null\n}\n\nexport interface CreateSmsTemplateByProjectIdResponseBody {\n smsTemplate: SmsTemplate\n}\n\nexport interface DeleteContactsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface DeleteContactsByProjectIdQueryStringParameters {\n cellPhone?: string | null\n emailAddress?: string | null\n}\n\nexport interface DeleteContactsByProjectIdResponseBody {\n contacts: Contact[]\n projectId: string\n}\n\nexport interface CreateTemplatedPrintJobByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateTemplatedPrintJobByProjectIdRequestBody {\n assetIds?: Array<any> | null\n callbackUrl?: string | null\n imageOptions?: QrCodeImageOptions | null\n name?: string | null\n printOptions: PrintOptions\n serializedFabric: NestedKeyValueObject\n stylingTemplateId?: string | null\n}\n\nexport interface CreateTemplatedPrintJobByProjectIdResponseBody {\n fileExpiry: string | Date | number\n job: PrintJob\n outputUrl: string\n}\n\nexport interface DeleteProjectPathParameters {\n projectId: string\n}\n\nexport interface DeleteProjectResponseBody {\n project: Project\n}\n\nexport interface CreateContactsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateContactsByProjectIdRequestBody {\n contacts: NestedContact[]\n}\n\nexport interface CreateContactsByProjectIdResponseBody {\n contacts: Array<any>\n numberOfContacts: number\n projectId: string\n}\n\nexport interface CreateTemplatedPrintPreviewByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface CreateTemplatedPrintPreviewByProjectIdRequestBody {\n assetIds?: Array<any> | null\n batchId?: string | null\n imageOptions?: QrCodeImageOptions | null\n printOptions: PrintOptions\n serializedFabric: NestedKeyValueObject\n stylingTemplateId?: string | null\n}\n\nexport interface CreateTemplatedPrintPreviewByProjectIdResponseBody {\n outputUrl: string\n}\n\nexport interface DeleteSmsTemplatePathParameters {\n projectId: string\n smsTemplateName: string\n}\n\nexport interface DeleteSmsTemplateResponseBody {\n body?: string | null\n projectId: string\n responseUrl?: string | null\n smsTemplateName?: string | null\n statusUrl?: string | null\n}\n\nexport interface GetAdvancedContactReportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetAdvancedContactReportByProjectIdQueryStringParameters {\n limit?: number | null\n nextToken?: string | null\n queryExecutionId?: string | null\n search?: string | null\n}\n\nexport interface GetAdvancedContactReportByProjectIdResponseBody {\n data: Array<any>\n meta: NestedKeyValueObject\n}\n\nexport interface GetAdvancedAssetReportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetAdvancedAssetReportByProjectIdQueryStringParameters {\n limit?: number | null\n nextToken?: string | null\n queryExecutionId?: string | null\n search?: string | null\n}\n\nexport interface GetAdvancedAssetReportByProjectIdResponseBody {\n data: Array<any>\n meta: NestedKeyValueObject\n}\n\nexport interface GetAdvancedScanReportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetAdvancedScanReportByProjectIdQueryStringParameters {\n displayMostRecentPerAsset?: boolean\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetAdvancedScanReportByProjectIdResponseBody {\n dynamicQRCodesTotal: number\n lastScan?: LastScan | null\n scansByDevice: NestedKeyValueObject\n scansByGeolocation: NestedKeyValueObject\n scansByLocation: NestedKeyValueObject\n scansTotal: number\n staticQRCodesTotal: number\n}\n\nexport interface GetAssetExportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetAssetExportByProjectIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetAssetExportByProjectIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface GetBasicContactReportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetBasicContactReportByProjectIdResponseBody {\n contactsCount: number\n}\n\nexport interface GetAssetGraphsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetAssetGraphsByProjectIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetAssetGraphsByProjectIdResponseBody {\n assetGraphs: AssetGraph[]\n lastKey?: string | null\n}\n\nexport interface GetBasicAssetReportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetBasicAssetReportByProjectIdResponseBody {\n assetsCount: number\n}\n\nexport interface GetContactExportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetContactExportByProjectIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetContactExportByProjectIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface GetConsentByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetConsentByProjectIdQueryStringParameters {\n consentStatus?: ConsentStatus\n consentType: ConsentType\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetConsentByProjectIdResponseBody {\n consent: ContactConsent[]\n lastKey?: string | null\n projectId: string\n}\n\nexport interface GetBatchesByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetBatchesByProjectIdQueryStringParameters extends NestedAsset {\n ascending?: boolean | null\n category?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n lastKey?: string | null\n limit?: number | null\n locationId?: string | null\n name: string\n qrCodes?: NestedQrCode[] | null\n state?: string | null\n willCreateSession?: boolean | null\n}\n\nexport interface GetBatchesByProjectIdResponseBody {\n asset: ResponseAsset\n projectId: string\n}\n\nexport interface GetMostScannedAssetsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetMostScannedAssetsByProjectIdQueryStringParameters {\n from?: string | Date | number | null\n limit?: number | null\n to?: string | Date | number | null\n}\n\nexport interface GetMostScannedAssetsByProjectIdResponseBody {\n mostScannedAssets: Array<any>\n}\n\nexport interface GetAssetsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetAssetsByProjectIdQueryStringParameters {\n ascending?: boolean | null\n assetTypeName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n includeQrCodeLinks?: boolean\n includeThumbnails?: boolean\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n queryCondition?: QueryConditions | null\n sortField?: AssetSortingTypes | null\n state?: string | null\n thumbnailMargin?: number | null\n thumbnailWidth?: number | null\n}\n\nexport interface GetAssetsByProjectIdResponseBody {\n assets: Asset[]\n lastKey?: string | null\n numberOfAssets: number\n projectId: string\n}\n\nexport interface GetContactsByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetContactsByProjectIdQueryStringParameters {\n ascending?: boolean | null\n assetName?: string | null\n contactName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n email?: string | null\n lastKey?: string | null\n limit?: number | null\n phone?: string | null\n queryCondition?: QueryConditions | null\n sortField?: ContactSortingTypes | null\n}\n\nexport interface GetContactsByProjectIdResponseBody {\n contacts: Contact[]\n lastKey?: string | null\n numberOfContacts: number\n projectId: string\n}\n\nexport interface GetScanDayOfWeekByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetScanDayOfWeekByProjectIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanDayOfWeekByProjectIdResponseBody {\n data: NestedKeyValueObject\n}\n\nexport interface GetScanTimelineByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetScanTimelineByProjectIdQueryStringParameters {\n from: string | Date | number\n to?: string | Date | number | null\n type: ScanTimelineOptions\n}\n\nexport interface GetScanTimelineByProjectIdResponseBody {\n data: NestedKeyValueObject\n}\n\nexport interface GetScanTimeOfDayByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetScanTimeOfDayByProjectIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanTimeOfDayByProjectIdResponseBody {\n data: NestedKeyValueObject\n}\n\nexport interface GetScanExportByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetScanExportByProjectIdRequestBody {\n colMap?: NestedKeyValueObject | null\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanExportByProjectIdResponseBody {\n fileName?: string | null\n job: Job\n}\n\nexport interface GetScansByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetScansByProjectIdQueryStringParameters {\n ascending?: boolean | null\n assetName?: string | null\n contactId?: string | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetScansByProjectIdResponseBody {\n lastKey?: string | null\n numberOfScans: number\n projectId: string\n scans: Scan[]\n}\n\nexport interface GetProjectByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetProjectByProjectIdResponseBody {\n project: Project\n}\n\nexport interface GetUserMediasByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetUserMediasByProjectIdQueryStringParameters {\n ascending?: boolean | null\n category?: string | null\n fileType?: string | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n sortField?: UserMediaSortingTypes | null\n}\n\nexport interface GetUserMediasByProjectIdResponseBody {\n lastKey?: string | null\n projectId: string\n userMedias: UserMedia[]\n}\n\nexport interface GetQrCodesByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface GetQrCodesByProjectIdQueryStringParameters {\n ascending?: boolean | null\n assetName?: string | null\n lastKey?: string | null\n limit?: number | null\n sortField?: QrCodeSortingTypes | null\n willGetLogoIds?: boolean | null\n}\n\nexport interface GetQrCodesByProjectIdResponseBody {\n lastKey?: string | null\n numberOfQrCodes: number\n projectId: string\n qrCodes: QrCode[]\n}\n\nexport interface UpdateQrCodeLogoByQrCodeLogoIdPathParameters {\n qrCodeLogoId: string\n}\n\nexport interface UpdateQrCodeLogoByQrCodeLogoIdRequestBody {\n hidden?: boolean | null\n}\n\nexport interface UpdateQrCodeLogoByQrCodeLogoIdResponseBody {\n qrCodeLogo: QrCodeLogo\n qrCodeLogoId: string\n}\n\nexport interface CreateLinkByQrCodePathParameters {\n qrCodeId: string\n}\n\nexport interface CreateLinkByQrCodeRequestBody {\n qrCodeLink?: string | null\n}\n\nexport interface CreateLinkByQrCodeResponseBody {\n qrCodeLink: QrCodeLink\n}\n\nexport interface ValidateFilePathParameters {\n fileId: string\n}\n\nexport interface ValidateFileResponseBody {\n errsObject: NestedKeyValueObject\n file: File\n}\n\nexport interface GetQrCodePathParameters {\n qrCodeId: string\n}\n\nexport interface GetQrCodeQueryStringParameters {\n background?: string | null\n backgroundGradientColors?: string | null\n backgroundGradientRotation?: number | null\n backgroundGradientType?: QrCodeGradientTypes | null\n cornerDotColor?: string | null\n cornerDotType?: QrCodeCornerDotTypes | null\n cornerSquareColor?: string | null\n cornerSquareType?: QrCodeCornerSquareTypes | null\n darkColor?: string | null\n dataUrl?: boolean | null\n dotType?: QrCodeDotTypes | null\n errorCorrectionLevel?: QrCodeErrorCorrectionLevel | null\n foreground?: string | null\n foregroundGradientColors?: string | null\n foregroundGradientRotation?: number | null\n foregroundGradientType?: QrCodeGradientTypes | null\n format?: QrCodeType | null\n getQrCodeLinks?: boolean\n lightColor?: string | null\n logo?: string | null\n logoMargin?: number | null\n margin?: number | null\n qrCodeLogoId?: string | null\n saveAsBlob?: boolean | null\n scale?: number | null\n stylingTemplateId?: string | null\n version?: number | null\n width?: number | null\n}\n\nexport interface GetQrCodeResponseBody extends ResponseQrCode {\n appAccountId?: string | null\n appId?: string | null\n assetId: string\n created?: string | Date | number | null\n customDomain?: string | null\n dynamicRedirectType?: QrCodeDynamicRedirectType\n image: QrCodeImage\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n intentType?: QrCodeIntentType\n isAskingForGPS?: boolean | null\n locatorKey: string\n locatorKeyType?: QrCodeLocatorKeyType\n modified?: string | Date | number | null\n name?: string | null\n projectId?: string | null\n qrCodeId: string\n qrCodeLinks?: Array<any> | null\n scanCount: number\n serializedLocatorKey?: string | null\n status?: QrCodeStatus\n stylingTemplateId?: string | null\n validFrom?: string | Date | number | null\n validTo?: string | Date | number | null\n}\n\nexport interface UpdateProjectByProjectIdPathParameters {\n projectId: string\n}\n\nexport interface UpdateProjectByProjectIdRequestBody {\n companyName?: string | null\n customDomain?: string | null\n description?: string | null\n name?: string | null\n status?: ProjectStatus | null\n}\n\nexport interface UpdateProjectByProjectIdResponseBody {\n project: Project\n}\n\nexport interface GetLinksByQrCodePathParameters {\n qrCodeId: string\n}\n\nexport interface GetLinksByQrCodeResponseBody {\n qrCodeLinks: Array<any>\n}\n\nexport interface GetFilePathParameters {\n fileId: string\n}\n\nexport interface GetFileResponseBody {\n file: File\n}\n\nexport interface GetQrCodeLogoByQrCodeLogoIdPathParameters {\n qrCodeLogoId: string\n}\n\nexport interface GetQrCodeLogoByQrCodeLogoIdResponseBody {\n qrCodeLogo: QrCodeLogo\n qrCodeLogoId: string\n}\n\nexport interface DeleteQrCodePathParameters {\n qrCodeId: string\n}\n\nexport interface DeleteQrCodeResponseBody {\n qrCode: QrCode\n}\n\nexport interface UpdateQrCodePathParameters {\n qrCodeId: string\n}\n\nexport interface UpdateQrCodeRequestBody {\n customDomain?: string | null\n dynamicRedirectType?: QrCodeDynamicRedirectType | null\n imageOptions?: QrCodeImageOptions | null\n intent?: string | null\n intentState?: NestedKeyValueObject | null\n isAskingForGPS?: boolean | null\n status?: QrCodeStatus | null\n stylingTemplateId?: string | null\n}\n\nexport interface UpdateQrCodeResponseBody {\n qrCode: ResponseQrCode\n}\n\nexport interface DeleteLinkByQrCodePathParameters {\n link: string\n qrCodeId: string\n}\n\nexport interface CreateContactByScanIdPathParameters {\n scanId: string\n}\n\nexport interface CreateContactByScanIdRequestBody {\n cellPhone?: string | null\n consent?: ContactConsent[] | null\n customAttributes?: NestedKeyValueObject | null\n emailAddress?: string | null\n firstName?: string | null\n lastName?: string | null\n mailingAddress?: ContactMailingAddress | null\n middleName?: string | null\n nickname?: string | null\n type?: string | null\n}\n\nexport interface CreateContactByScanIdResponseBody {\n asset: Asset\n assetContact: AssetContact\n assetId: string\n contact: Contact\n projectContact: ProjectContact\n scanContact: ScanContact\n}\n\nexport interface SaveGeolocationByScanIdPathParameters {\n scanId: string\n}\n\nexport interface SaveGeolocationByScanIdRequestBody {\n latitude?: string | null\n longitude?: string | null\n}\n\nexport interface GetScanPathParameters {\n scanId: string\n}\n\nexport interface GetScanQueryStringParameters {\n getUserMedias?: boolean\n}\n\nexport interface GetScanResponseBody {\n asset: Asset\n assetType?: AssetType | null\n contacts: Contact[]\n qrCode: QrCode\n scan: Scan\n}\n\nexport interface UpdateScanCustomAttributePathParameters {\n scanId: string\n}\n\nexport interface UpdateScanCustomAttributeRequestBody {\n customAttributes?: NestedKeyValueObject | null\n}\n\nexport interface UpdateScanCustomAttributeResponseBody {\n scan: Scan\n}\n\nexport interface BatchUpdateAssetLocationsPathParameters {\n locationId: string\n}\n\nexport interface BatchUpdateAssetLocationsRequestBody {\n assetIds: Array<any>\n}\n\nexport interface BatchUpdateAssetLocationsResponseBody {\n assets: Asset\n}\n\nexport interface DeleteLocationPathParameters {\n locationId: string\n}\n\nexport interface DeleteLocationQueryStringParameters {\n}\n\nexport interface DeleteLocationResponseBody {\n location: Location\n}\n\nexport interface UpdateLocationPathParameters {\n locationId: string\n}\n\nexport interface UpdateLocationRequestBody {\n address?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n name?: string | null\n state?: string | null\n}\n\nexport interface UpdateLocationResponseBody {\n location: Location\n}\n\nexport interface CreateApiKeyByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateApiKeyByAccountIdRequestBody {\n description?: string | null\n name?: string | null\n}\n\nexport interface CreateApiKeyByAccountIdResponseBody {\n apiKeyId: string\n description?: string | null\n key: string\n name: string\n secret: string\n status: string\n}\n\nexport interface CheckAccountAccessPathParameters {\n accountId: string\n userId: string\n}\n\nexport interface CheckAccountAccessResponseBody {\n userRole: string\n}\n\nexport interface GetAssetsByLocationPathParameters {\n locationId: string\n}\n\nexport interface GetAssetsByLocationQueryStringParameters {\n ascending?: boolean | null\n assetTypeName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n includeThumbnails?: boolean\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n queryCondition?: QueryConditions | null\n sortField?: AssetSortingTypes | null\n state?: string | null\n thumbnailMargin?: number | null\n thumbnailWidth?: number | null\n}\n\nexport interface GetAssetsByLocationResponseBody {\n assets: Asset[]\n lastKey?: string | null\n locationId: string\n numberOfAssets: number\n}\n\nexport interface CreateAssetTypeByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateAssetTypeByAccountIdRequestBody {\n category?: string | null\n childItems?: NestedKeyValueObject | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n instanceProperties?: NestedKeyValueObject | null\n intent?: string | null\n name: string\n staticProperties?: NestedKeyValueObject | null\n usabilityState?: AssetTypeUsabilityState | null\n}\n\nexport interface CreateAssetTypeByAccountIdResponseBody {\n accountId: string\n assetType: AssetType\n}\n\nexport interface CreateAppByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateAppByAccountIdRequestBody {\n app: RequestApp\n}\n\nexport interface CreateAppByAccountIdResponseBody {\n app: App\n}\n\nexport interface CheckUrlSafetyByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CheckUrlSafetyByAccountIdRequestBody {\n ignoreBlackList?: boolean\n qrCodeId?: string | null\n urls: Array<any>\n}\n\nexport interface CheckUrlSafetyByAccountIdResponseBody {\n isSafe: boolean\n urlSafeties: URLSafety[]\n}\n\nexport interface CreateLocationByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateLocationByAccountIdRequestBody {\n address?: string | null\n customAttributes?: NestedKeyValueObject | null\n description?: string | null\n name: string\n state?: string | null\n}\n\nexport interface CreateLocationByAccountIdResponseBody {\n accountId: string\n location: Location\n}\n\nexport interface CreatePrintPageTemplateByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreatePrintPageTemplateByAccountIdRequestBody {\n created?: string | Date | number | null\n format?: PrintFormat | null\n horizontalMargin: number\n horizontalPadding: number\n isDeleted?: boolean | null\n modified?: string | Date | number | null\n name: string\n numberOfColumns: number\n numberOfRows: number\n orientation?: PrintOrientation | null\n pageSize: Array<any>\n printMode?: PrintMode | null\n printTemplate?: PrintTemplate | null\n stickerShape: StickerShape\n stickerSize: Array<any>\n unit?: PrintUnit\n verticalMargin: number\n verticalPadding: number\n}\n\nexport interface CreatePrintPageTemplateByAccountIdResponseBody {\n printPageTemplate: PrintPageTemplate\n}\n\nexport interface CreateImageUploadPresignedPathParameters {\n accountId: string\n}\n\nexport interface CreateImageUploadPresignedRequestBody {\n imageContentType: string\n}\n\nexport interface CreateImageUploadPresignedResponseBody {\n image: S3Image\n presignedUrl: string\n}\n\nexport interface CreateInvitationByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateInvitationByAccountIdRequestBody extends AccountInvitationRequestBody {\n email: string\n firstName: string\n lastName: string\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface CreateInvitationByAccountIdResponseBody {\n accountInvitation: AccountInvitation\n emailInvitation: EmailInvitation\n}\n\nexport interface CreateQrCodeLogoByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateQrCodeLogoByAccountIdRequestBody {\n logoContentType: string\n}\n\nexport interface CreateQrCodeLogoByAccountIdResponseBody {\n presignedUrl: string\n qrCodeLogo: QrCodeLogo\n}\n\nexport interface CreateInvitationsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateInvitationsByAccountIdRequestBody {\n users: AccountInvitationRequestBody[]\n}\n\nexport interface CreateInvitationsByAccountIdResponseBody {\n accountInvitations: AccountInvitation[]\n emailInvitations: EmailInvitation[]\n}\n\nexport interface CreatePrintStickerTemplateByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreatePrintStickerTemplateByAccountIdRequestBody {\n bleed?: boolean | null\n name: string\n previewImage: string\n serializedFabric: NestedKeyValueObject\n stickerShape: StickerShape\n stickerSize: Array<any>\n unit?: PrintUnit\n}\n\nexport interface CreatePrintStickerTemplateByAccountIdResponseBody {\n printStickerTemplate: PrintStickerTemplate\n}\n\nexport interface CreateProjectByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateProjectByAccountIdRequestBody {\n companyName?: string | null\n customDomain?: string | null\n description?: string | null\n micrositeCustomDomain?: string | null\n name: string\n workflowCustomDomain?: string | null\n}\n\nexport interface CreateProjectByAccountIdResponseBody {\n accountId: string\n project: Project\n}\n\nexport interface CreateQrCodeStylingTemplateByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateQrCodeStylingTemplateByAccountIdRequestBody {\n imageOptions?: QrCodeImageOptions\n name: string\n projectId?: string | null\n}\n\nexport interface CreateQrCodeStylingTemplateByAccountIdResponseBody {\n accountId: string\n qrCodeStylingTemplate: QrCodeStylingTemplate\n}\n\nexport interface CreateTicketByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateTicketByAccountIdRequestBody {\n category?: string\n impact?: string\n message: string\n subject?: string\n}\n\nexport interface CreateUserMediaPresignedUrlByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateUserMediaPresignedUrlByAccountIdRequestBody {\n allowExpiry?: boolean\n assetId?: string | null\n category?: string | null\n fileType: UserMediaFileTypes\n name?: string | null\n projectId?: string | null\n scanId?: string | null\n subFolder?: string | null\n}\n\nexport interface CreateUserMediaPresignedUrlByAccountIdResponseBody {\n presignedUrl: string\n userMedia: UserMedia\n}\n\nexport interface DeleteContactsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface DeleteContactsByAccountIdQueryStringParameters {\n cellPhone?: string | null\n emailAddress?: string | null\n}\n\nexport interface DeleteContactsByAccountIdResponseBody {\n accountId: string\n contacts: Contact[]\n}\n\nexport interface DeleteUserByAccountIdPathParameters {\n accountId: string\n userId: string\n}\n\nexport interface GetAccountPathParameters {\n accountId: string\n}\n\nexport interface GetAccountResponseBody extends Account {\n accountId: string\n accountStatus?: AccountStatus\n assetCount: number\n campaignStatus?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n currentPeriod: PricePlanPeriod\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n pricePlan: PricePlan\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface GetAccountDomainPathParameters {\n accountId: string\n customDomain: string\n}\n\nexport interface GetAccountDomainResponseBody {\n accountDomain: AccountDomain\n}\n\nexport interface GetAllAppsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAllAppsByAccountIdQueryStringParameters {\n appName?: string | null\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetAllAppsByAccountIdResponseBody {\n apps: App[]\n}\n\nexport interface GetAdvancedContactReportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAdvancedContactReportByAccountIdQueryStringParameters {\n limit?: number | null\n nextToken?: string | null\n queryExecutionId?: string | null\n search?: string | null\n}\n\nexport interface GetAdvancedContactReportByAccountIdResponseBody {\n data: Array<any>\n meta: NestedKeyValueObject\n}\n\nexport interface GetAdvancedScanReportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAdvancedScanReportByAccountIdQueryStringParameters {\n displayMostRecentPerAsset?: boolean\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetAdvancedScanReportByAccountIdResponseBody {\n dynamicQRCodesTotal: number\n lastScan?: LastScan | null\n projectsTotal: number\n scansByDevice: NestedKeyValueObject\n scansByGeolocation: NestedKeyValueObject\n scansByLocation: NestedKeyValueObject\n scansTotal: number\n staticQRCodesTotal: number\n}\n\nexport interface GetApiKeysByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetApiKeysByAccountIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetApiKeysByAccountIdResponseBody {\n accountId: string\n apiKeys: ApiKeyCredentials[]\n lastKey?: string | null\n numberOfApiKeys: number\n}\n\nexport interface GetAssetGraphsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAssetGraphsByAccountIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n projectId?: string | null\n}\n\nexport interface GetAssetGraphsByAccountIdResponseBody {\n assetGraphs: AssetGraph[]\n lastKey?: string | null\n}\n\nexport interface GetAssetTypesByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAssetTypesByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n locationId?: string | null\n name?: string | null\n sortField?: AssetTypeSortingTypes | null\n usabilityState?: AssetTypeUsabilityState | null\n}\n\nexport interface GetAssetTypesByAccountIdResponseBody {\n accountId: string\n assetTypes: AssetType[]\n assetTypesByLocation?: AssetTypeByLocation[] | null\n lastKey?: string | null\n numberOfAssetTypes: number\n}\n\nexport interface CreateUserMediaMultipartPresignedUrlByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateUserMediaMultipartPresignedUrlByAccountIdRequestBody {\n assetId?: string | null\n category?: string | null\n fileType: UserMediaFileTypes\n name?: string | null\n parts: number\n projectId?: string | null\n scanId?: string | null\n subFolder?: string | null\n}\n\nexport interface CreateUserMediaMultipartPresignedUrlByAccountIdResponseBody {\n presignedUrls: Array<any>\n uploadId: string\n userMedia: UserMedia\n}\n\nexport interface GetAssetExportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAssetExportByAccountIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetAssetExportByAccountIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface GetAdvancedAssetReportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAdvancedAssetReportByAccountIdQueryStringParameters {\n limit?: number | null\n nextToken?: string | null\n queryExecutionId?: string | null\n search?: string | null\n}\n\nexport interface GetAdvancedAssetReportByAccountIdResponseBody {\n data: Array<any>\n meta: NestedKeyValueObject\n}\n\nexport interface GetBasicAssetReportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetBasicAssetReportByAccountIdResponseBody {\n assetsCount: number\n}\n\nexport interface GetAssetsScanCountByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAssetsScanCountByAccountIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetAssetsScanCountByAccountIdRequestBody {\n assetIds: Array<any>\n}\n\nexport interface GetAssetsScanCountByAccountIdResponseBody {\n scanCount: NestedKeyValueObject\n}\n\nexport interface GetBasicContactReportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetBasicContactReportByAccountIdResponseBody {\n contactsCount: number\n}\n\nexport interface GetConsentByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetConsentByAccountIdQueryStringParameters {\n consentStatus?: ConsentStatus\n consentType: ConsentType\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetConsentByAccountIdResponseBody {\n accountId: string\n consent: ContactConsent[]\n lastKey?: string | null\n}\n\nexport interface CreateQueryableCustomAttributeByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface CreateQueryableCustomAttributeByAccountIdRequestBody {\n customAttributeName: string\n fieldType: FieldType\n}\n\nexport interface CreateQueryableCustomAttributeByAccountIdResponseBody {\n customAttribute: CustomAttribute\n}\n\nexport interface GetContactExportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetContactExportByAccountIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetContactExportByAccountIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface GetBatchesByAccountIdPathParameters {\n projectId: string\n}\n\nexport interface GetBatchesByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetBatchesByAccountIdResponseBody {\n batch: Batch\n lastKey?: string | null\n}\n\nexport interface GetDomainsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetDomainsByAccountIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n type?: AccountDomainTypes | null\n}\n\nexport interface GetDomainsByAccountIdResponseBody {\n accountDomains: AccountDomain[]\n lastKey?: string | null\n}\n\nexport interface GetContactsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetContactsByAccountIdQueryStringParameters {\n ascending?: boolean | null\n assetName?: string | null\n contactName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n email?: string | null\n lastKey?: string | null\n limit?: number | null\n phone?: string | null\n queryCondition?: QueryConditions | null\n sortField?: ContactSortingTypes | null\n}\n\nexport interface GetContactsByAccountIdResponseBody {\n accountId: string\n contacts: Contact[]\n lastKey?: string | null\n numberOfContacts: number\n}\n\nexport interface GetJobsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetJobsByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetJobsByAccountIdResponseBody {\n jobs: Job[]\n lastKey?: string | null\n}\n\nexport interface GetPricePlanByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetPricePlanByAccountIdResponseBody {\n pricePlan: PricePlan\n pricePlanPeriod: PricePlanPeriod\n}\n\nexport interface GetPrintJobsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetPrintJobsByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n printJobName?: string | null\n}\n\nexport interface GetPrintJobsByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfPrintJobs: number\n printJobs: PrintJob[]\n}\n\nexport interface GetAssetsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetAssetsByAccountIdQueryStringParameters {\n ascending?: boolean | null\n assetTypeName?: string | null\n customAttributeName?: string | null\n customAttributeUpperValue?: string | null\n customAttributeValue?: string | null\n includeThumbnails?: boolean\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n queryCondition?: QueryConditions | null\n sortField?: AssetSortingTypes | null\n state?: string | null\n thumbnailMargin?: number | null\n thumbnailWidth?: number | null\n}\n\nexport interface GetAssetsByAccountIdResponseBody {\n accountId: string\n assets: Asset[]\n lastKey?: string | null\n numberOfAssets: number\n}\n\nexport interface GetPrintPageTemplatesByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetPrintPageTemplatesByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n}\n\nexport interface GetPrintPageTemplatesByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfPrintPageTemplates: number\n printPageTemplates: PrintPageTemplate[]\n}\n\nexport interface GetPrintStickerTemplatesByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetPrintStickerTemplatesByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n}\n\nexport interface GetPrintStickerTemplatesByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfPrintStickerTemplates: number\n printStickerTemplates: PrintStickerTemplate[]\n}\n\nexport interface GetLocationsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetLocationsByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n sortField?: LocationSortingTypes | null\n state?: string | null\n}\n\nexport interface GetLocationsByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n locations: Location[]\n numberOfLocations: number\n}\n\nexport interface GetProjectsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetProjectsByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n sortField?: ProjectSortingTypes | null\n}\n\nexport interface GetProjectsByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfProjects: number\n projects: Project[]\n}\n\nexport interface GetInstalledAppsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetInstalledAppsByAccountIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetInstalledAppsByAccountIdResponseBody {\n installedApps: AppBasicDetails[]\n}\n\nexport interface GetPluginsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetPluginsByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfPlugins: number\n plugins: ResponseAccountPlugin[]\n}\n\nexport interface GetMostScannedAssetsByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetMostScannedAssetsByAccountIdQueryStringParameters {\n from?: string | Date | number | null\n limit?: number | null\n to?: string | Date | number | null\n}\n\nexport interface GetMostScannedAssetsByAccountIdResponseBody {\n mostScannedAssets: Array<any>\n}\n\nexport interface GetQrCodeStylingTemplatesByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetQrCodeStylingTemplatesByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n stylingTemplateName?: string | null\n}\n\nexport interface GetQrCodeStylingTemplatesByAccountIdResponseBody {\n accountId: string\n numberOfQrCodeStylingTemplates: number\n qrCodeStylingTemplates: QrCodeStylingTemplate[]\n}\n\nexport interface GetScanTimeOfDayByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetScanTimeOfDayByAccountIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanTimeOfDayByAccountIdResponseBody {\n data: NestedKeyValueObject\n}\n\nexport interface GetProjectExportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetProjectExportByAccountIdRequestBody {\n email?: string | null\n format?: string\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetProjectExportByAccountIdResponseBody {\n fileName: string\n job: Job\n}\n\nexport interface GetQrCodeLogosByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetQrCodeLogosByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetQrCodeLogosByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfQrCodeLogos: number\n qrCodeLogos: QrCodeLogo[]\n}\n\nexport interface GetScanTimelineByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetScanTimelineByAccountIdQueryStringParameters {\n from: string | Date | number\n to?: string | Date | number | null\n type: ScanTimelineOptions\n}\n\nexport interface GetScanTimelineByAccountIdResponseBody {\n data: NestedKeyValueObject\n}\n\nexport interface GetQueryableCustomAttributesByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetQueryableCustomAttributesByAccountIdQueryStringParameters {\n ascending?: boolean | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetQueryableCustomAttributesByAccountIdResponseBody {\n customAttributes: CustomAttribute[]\n}\n\nexport interface GetScanExportByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetScanExportByAccountIdRequestBody {\n colMap?: NestedKeyValueObject | null\n email?: string | null\n format?: string\n from?: string | Date | number | null\n projectId?: string | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanExportByAccountIdResponseBody {\n fileName?: string | null\n job: Job\n}\n\nexport interface GetScanDayOfWeekByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetScanDayOfWeekByAccountIdQueryStringParameters {\n from?: string | Date | number | null\n to?: string | Date | number | null\n}\n\nexport interface GetScanDayOfWeekByAccountIdResponseBody {\n data: NestedKeyValueObject\n}\n\nexport interface GetQrCodesByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetQrCodesByAccountIdQueryStringParameters {\n ascending?: boolean | null\n assetName?: string | null\n lastKey?: string | null\n limit?: number | null\n sortField?: QrCodeSortingTypes | null\n willGetLogoIds?: boolean | null\n}\n\nexport interface GetQrCodesByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfQrCodes: number\n qrCodes: QrCode[]\n}\n\nexport interface GetScansByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetScansByAccountIdQueryStringParameters {\n ascending?: boolean | null\n assetName?: string | null\n contactId?: string | null\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetScansByAccountIdResponseBody {\n accountId: string\n lastKey?: string | null\n numberOfScans: number\n scans: Scan[]\n}\n\nexport interface GetUserMediasByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetUserMediasByAccountIdQueryStringParameters {\n ascending?: boolean | null\n category?: string | null\n fileType?: string | null\n lastKey?: string | null\n limit?: number | null\n mediaIds?: string | null\n name?: string | null\n sortField?: UserMediaSortingTypes | null\n}\n\nexport interface GetUserMediasByAccountIdResponseBody {\n lastKey?: string | null\n userMedias: UserMedia[]\n}\n\nexport interface GetUserByAccountIdPathParameters {\n accountId: string\n userId: string\n}\n\nexport interface GetUserByAccountIdResponseBody extends ResponseBodyUser {\n created: string | Date | number\n email: string\n expiresAt?: string | Date | number | null\n firstName: string\n invitationId?: string | null\n lastName: string\n middleName: string\n userId?: string | null\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface GetUsersByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface GetUsersByAccountIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n name?: string | null\n}\n\nexport interface GetUsersByAccountIdResponseBody {\n accountId: string\n invitations: ResponseBodyUser[]\n lastKey?: string | null\n numberOfInvitations: number\n numberOfUsers: number\n users: ResponseBodyUser[]\n}\n\nexport interface SendCampaignInformationByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface SendCampaignInformationByAccountIdRequestBody {\n campaignInfo: SmsCampaignRequest\n}\n\nexport interface SendCampaignInformationByAccountIdResponseBody {\n account: Account\n accountSmsCampaign: AccountSmsCampaign\n}\n\nexport interface GetUsersRolesByAccountIdPathParameters {\n accountId: string\n userId: string\n}\n\nexport interface GetUsersRolesByAccountIdResponseBody {\n permissions: Permission[]\n userRoles: UserRole[]\n}\n\nexport interface UpdateAccountPathParameters {\n accountId: string\n}\n\nexport interface UpdateAccountRequestBody {\n companyName?: string | null\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n}\n\nexport interface UpdateAccountResponseBody extends Account {\n accountId: string\n accountStatus?: AccountStatus\n assetCount: number\n campaignStatus?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface UpdatePricePlanPathParameters {\n accountId: string\n}\n\nexport interface UpdatePricePlanRequestBody {\n planName: string\n}\n\nexport interface UpdatePricePlanResponseBody {\n}\n\nexport interface StripeClockPathParameters {\n accountId: string\n}\n\nexport interface StripeClockRequestBody {\n customDate?: string | null\n shortcuts?: string | null\n}\n\nexport interface StripeClockResponseBody {\n message: string\n}\n\nexport interface RetrieveCampaignStatusByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface RetrieveCampaignStatusByAccountIdResponseBody {\n accountSmsCampaign: AccountSmsCampaign\n}\n\nexport interface InstallAppToAccountPathParameters {\n accountId: string\n appId: string\n}\n\nexport interface InstallAppToAccountResponseBody {\n appAccount: AppAccount\n}\n\nexport interface UpdateUserByAccountIdPathParameters {\n accountId: string\n userId: string\n}\n\nexport interface UpdateUserByAccountIdRequestBody {\n userRole?: AccountUserRole | null\n userRoleIds?: Array<any>\n}\n\nexport interface UpdateUserByAccountIdResponseBody {\n accountUser: AccountUser\n}\n\nexport interface UpdatePricePlanByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface UpdatePricePlanByAccountIdRequestBody {\n paymentPeriod: PricePlanPaymentPeriod\n pricePlanName: PricePlanName\n}\n\nexport interface UpdatePricePlanByAccountIdResponseBody {\n pricePlan: PricePlan\n pricePlanPeriod: PricePlanPeriod\n}\n\nexport interface UploadQrCodeLogoByAccountIdPathParameters {\n accountId: string\n}\n\nexport interface UploadQrCodeLogoByAccountIdRequestBody {\n logo: string\n}\n\nexport interface UploadQrCodeLogoByAccountIdResponseBody {\n qrCodeLogoId: string\n qrCodeLogoUrl: string\n}\n\nexport interface UpdateUsersRolesByAccountIdPathParameters {\n accountId: string\n userId: string\n}\n\nexport interface UpdateUsersRolesByAccountIdRequestBody {\n userRoleIds: Array<any>\n}\n\nexport interface UpdateUsersRolesByAccountIdResponseBody {\n accountUser: AccountUser\n}\n\nexport interface GetUserRolesResponseBody {\n userRoles: UserRole[]\n}\n\nexport interface CreateAccountByUserIdPathParameters {\n userId: string\n}\n\nexport interface CreateAccountByUserIdRequestBody {\n companyName?: string | null\n}\n\nexport interface CreateAccountByUserIdResponseBody extends Account {\n accountId: string\n accountStatus?: AccountStatus\n assetCount: number\n campaignStatus?: string | null\n collectTaxInfo?: boolean\n companyName?: string | null\n contactCount: number\n created?: string | Date | number | null\n customAttributeCount: number\n defaultCustomDomain?: string | null\n defaultMicrositeCustomDomain?: string | null\n dynamicQrCodeCount: number\n emailCount: number\n isLocked?: boolean | null\n lastContactCreatedDate?: string | Date | number | null\n lastScanId?: string | null\n mediaCount?: number | null\n mmsCount: number\n modified?: string | Date | number | null\n needsPaymentUpdate?: boolean\n paymentFailedDate?: string | null\n projectCount: number\n qrDomain?: string | null\n scanCount: number\n smsCount: number\n staticQrCodeCount: number\n stripeCustomerId?: string | null\n type?: AccountType\n userCount: number\n visibleContacts?: number | null\n webSessionCount?: number | null\n}\n\nexport interface GetUserPathParameters {\n userId: string\n}\n\nexport interface GetUserResponseBody extends User {\n created?: string | Date | number | null\n email: string\n firstName: string\n lastName: string\n middleName: string\n modified?: string | Date | number | null\n ssoIdentity?: NestedKeyValueObject | null\n userId: string\n}\n\nexport interface GetErrorsByUserIdPathParameters {\n userId: string\n}\n\nexport interface GetErrorsByUserIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetErrorsByUserIdResponseBody {\n errors: Response[]\n lastKey?: string | null\n numberOfErrors: number\n userId: string\n}\n\nexport interface GetAccountsByUserIdPathParameters {\n userId: string\n}\n\nexport interface GetAccountsByUserIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetAccountsByUserIdResponseBody {\n accounts: AccountResponse[]\n lastKey?: string | null\n numberOfAccounts: number\n userId: string\n}\n\nexport interface GetInvitationsByUserIdPathParameters {\n userId: string\n}\n\nexport interface GetInvitationsByUserIdQueryStringParameters {\n lastKey?: string | null\n limit?: number | null\n}\n\nexport interface GetInvitationsByUserIdResponseBody {\n accountInvitations: AccountInvitation[]\n lastKey?: string | null\n numberOfInvitations: number\n userId: string\n}\n\nexport interface CompleteUserMediaMultipartUploadPathParameters {\n mediaId: string\n}\n\nexport interface CompleteUserMediaMultipartUploadRequestBody {\n key: string\n parts: MultipartUploadPart[]\n uploadId: string\n}\n\nexport interface CompleteUserMediaMultipartUploadResponseBody {\n userMedia: UserMedia\n}\n\nexport interface GetPricePlansResponseBody {\n pricePlans: NestedKeyValueObject\n}\n\nexport interface LinkMediaToAssetPathParameters {\n assetId: string\n mediaId: string\n}\n\nexport interface LinkMediaToAssetResponseBody {\n userMedia: UserMedia\n}\n\nexport interface LinkMediaToProjectPathParameters {\n mediaId: string\n projectId: string\n}\n\nexport interface LinkMediaToProjectResponseBody {\n userMedia: UserMedia\n}\n\nexport interface UpdateUserPathParameters {\n userId: string\n}\n\nexport interface UpdateUserRequestBody {\n firstName?: string | null\n lastName?: string | null\n middleName?: string | null\n}\n\nexport interface UpdateUserResponseBody extends User {\n created?: string | Date | number | null\n email: string\n firstName: string\n lastName: string\n middleName: string\n modified?: string | Date | number | null\n ssoIdentity?: NestedKeyValueObject | null\n userId: string\n}\n\nexport interface GetUserSettingsPathParameters {\n path: UserSettingsDomain\n userId: string\n}\n\nexport interface GetUserSettingsResponseBody extends UserSettings {\n created?: string | Date | number | null\n lastSelectedAccountId?: string | null\n modified?: string | Date | number | null\n path: UserSettingsDomain\n userId: string\n}\n\nexport interface GetUserMediaPathParameters {\n mediaId: string\n}\n\nexport interface GetUserMediaResponseBody {\n userMedia: UserMedia\n}\n\nexport interface LinkMediaToScanPathParameters {\n mediaId: string\n scanId: string\n}\n\nexport interface LinkMediaToScanResponseBody {\n userMedia: UserMedia\n}\n\nexport interface UnlinkMediaToAssetPathParameters {\n assetId: string\n mediaId: string\n}\n\nexport interface UnlinkMediaToAssetResponseBody {\n}\n\nexport interface SetUserSettingsPathParameters {\n path: UserSettingsDomain\n userId: string\n}\n\nexport interface SetUserSettingsRequestBody {\n lastSelectedAccountId: string\n}\n\nexport interface SetUserSettingsResponseBody extends UserSettings {\n created?: string | Date | number | null\n lastSelectedAccountId?: string | null\n modified?: string | Date | number | null\n path: UserSettingsDomain\n userId: string\n}\n\nexport interface UnlinkMediaToScanPathParameters {\n mediaId: string\n scanId: string\n}\n\nexport interface UnlinkMediaToScanResponseBody {\n userMedia: UserMedia\n}\n\nexport interface UnlinkMediaToProjectPathParameters {\n mediaId: string\n projectId: string\n}\n\nexport interface UnlinkMediaToProjectResponseBody {\n}\n\nexport interface DeletePrintStickerTemplatePathParameters {\n printStickerTemplateId: string\n}\n\nexport interface GetPrintStickerTemplatePathParameters {\n printStickerTemplateId: string\n}\n\nexport interface GetPrintStickerTemplateResponseBody {\n printStickerTemplate: PrintStickerTemplate\n}\n\nexport interface DeleteStylingTemplateByStylingTemplateIdPathParameters {\n stylingTemplateId: string\n}\n\nexport interface DeleteStylingTemplateByStylingTemplateIdResponseBody {\n qrCodeStylingTemplate: QrCodeStylingTemplate\n stylingTemplateId: string\n}\n\nexport interface DeletePrintPageTemplatePathParameters {\n printPageTemplateId: string\n}\n\nexport interface GetStylingTemplateByStylingTemplateIdPathParameters {\n stylingTemplateId: string\n}\n\nexport interface GetStylingTemplateByStylingTemplateIdResponseBody {\n qrCodeStylingTemplate: QrCodeStylingTemplate\n stylingTemplateId: string\n}\n\nexport interface UpdatePrintPageTemplatePathParameters {\n printPageTemplateId: string\n}\n\nexport interface UpdatePrintPageTemplateRequestBody {\n created?: string | Date | number | null\n format?: PrintFormat | null\n horizontalMargin: number\n horizontalPadding: number\n isDeleted?: boolean | null\n modified?: string | Date | number | null\n name: string\n numberOfColumns: number\n numberOfRows: number\n orientation?: PrintOrientation | null\n pageSize: Array<any>\n printMode?: PrintMode | null\n printTemplate?: PrintTemplate | null\n stickerShape: StickerShape\n stickerSize: Array<any>\n unit: PrintUnit\n verticalMargin: number\n verticalPadding: number\n}\n\nexport interface UpdatePrintPageTemplateResponseBody {\n printPageTemplate: PrintPageTemplate\n}\n\nexport interface UpdateUserMediaPathParameters {\n mediaId: string\n}\n\nexport interface UpdateUserMediaRequestBody {\n category?: string | null\n description?: string | null\n mediaType: string\n title?: string | null\n}\n\nexport interface UpdateUserMediaResponseBody {\n userMedia: UserMedia\n}\n\nexport interface UpdateStylingTemplateByStylingTemplateIdPathParameters {\n stylingTemplateId: string\n}\n\nexport interface UpdateStylingTemplateByStylingTemplateIdRequestBody {\n imageOptions?: QrCodeImageOptionsNoDefaults\n name?: string | null\n qrCodeLogoId?: string | null\n}\n\nexport interface UpdateStylingTemplateByStylingTemplateIdResponseBody {\n qrCodeStylingTemplate: QrCodeStylingTemplate\n stylingTemplateId: string\n}\n\nexport interface GetPrintPageTemplatePathParameters {\n printPageTemplateId: string\n}\n\nexport interface GetPrintPageTemplateResponseBody {\n printPageTemplate: PrintPageTemplate\n}\n\nexport interface UpdatePrintStickerTemplatePathParameters {\n printStickerTemplateId: string\n}\n\nexport interface UpdatePrintStickerTemplateRequestBody {\n bleed?: boolean | null\n created?: string | Date | number | null\n isDeleted?: boolean | null\n lastUsedAt?: string | Date | number | null\n modified?: string | Date | number | null\n name: string\n previewImage?: string | null\n serializedFabric: NestedKeyValueObject\n stickerShape: StickerShape\n stickerSize: Array<any>\n unit: PrintUnit\n}\n\nexport interface UpdatePrintStickerTemplateResponseBody {\n printStickerTemplate: PrintStickerTemplate\n}\n\nexport interface DeleteSessionResponseBody extends UserSessionResponseBody {\n expires: string | Date | number\n scope: AuthTokenScope\n user?: User | null\n userId: string\n}\n\nexport interface CheckSessionResponseBody {\n authenticated: boolean\n expires?: string | Date | number | null\n scope?: AuthTokenScope | null\n user?: User | null\n userId?: string | null\n}\n\nexport interface GetSessionRequestBody {\n email: string\n password: string\n}\n\nexport interface GetSessionResponseBody extends UserSessionResponseBody {\n expires: string | Date | number\n scope: AuthTokenScope\n user?: User | null\n userId: string\n}\n\nexport interface GetSessionRefreshUserSessionResponseBody {\n expires: string | Date | number\n scope: AuthTokenScope\n user?: User | null\n userId: string\n}\n\nexport interface CreateUserRequestBody {\n companyName?: string | null\n email: string\n firstName?: string | null\n groups?: string | null\n lastName?: string | null\n middleName?: string | null\n password: string\n pricePlanName?: string | null\n}\n\nexport interface ResendConfirmationRequestBody {\n email: string\n pricePlanName?: string | null\n}\n\nexport interface ResetPasswordRequestBody {\n email: string\n}\n\nexport interface ChangePasswordRequestBody {\n newPassword: string\n password?: string | null\n}\n\nexport interface ChangePasswordResponseBody extends UserSessionResponseBody {\n expires: string | Date | number\n scope: AuthTokenScope\n user?: User | null\n userId: string\n}\n\nexport interface DeleteUserMediaPathParameters {\n mediaId: string\n}\n\nexport interface DeleteUserMediaResponseBody {\n userMedia: UserMedia\n}\n\n// HANDLER REQUEST CLASSES\n\nexport class GetApiKeySecretRequest extends RequestGet<GetApiKeySecretPathParameters, undefined, GetApiKeySecretResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"apiKeyId\",\"routePart\":\"apikeys\",\"sdkPartName\":\"apikey\"},{\"routePart\":\"secret\",\"sdkPartName\":\"secret\"}]\n}\n\nexport class UpdateAppByAppIdRequest extends RequestPatch<UpdateAppByAppIdPathParameters, undefined, UpdateAppByAppIdRequestBody, UpdateAppByAppIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"appId\",\"routePart\":\"apps\",\"sdkPartName\":\"app\"}]\n}\n\nexport class ResetApiKeySecretRequest extends RequestPatch<ResetApiKeySecretPathParameters, undefined, undefined, ResetApiKeySecretResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"apiKeyId\",\"routePart\":\"apikeys\",\"sdkPartName\":\"apikey\"},{\"routePart\":\"secret\",\"sdkPartName\":\"secret\"}]\n}\n\nexport class GetAppsRequest extends RequestGet<undefined, GetAppsQueryStringParameters, GetAppsResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"apps\",\"sdkPartName\":\"apps\"}]\n}\n\nexport class GetApiKeyRequest extends RequestGet<GetApiKeyPathParameters, undefined, GetApiKeyResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"apiKeyId\",\"routePart\":\"apikeys\",\"sdkPartName\":\"apikey\"}]\n}\n\nexport class GetPublishedAppsRequest extends RequestGet<undefined, GetPublishedAppsQueryStringParameters, GetPublishedAppsResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"apps/published\",\"sdkPartName\":\"appsPublished\"}]\n}\n\nexport class LoadAppRequest extends RequestPost<LoadAppPathParameters, undefined, undefined, LoadAppResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"appId\",\"routePart\":\"apps\",\"sdkPartName\":\"app\"},{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"load\",\"sdkPartName\":\"load\"}]\n}\n\nexport class DeleteAssetTypeRequest extends RequestDelete<DeleteAssetTypePathParameters, undefined, DeleteAssetTypeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetTypeId\",\"routePart\":\"assettypes\",\"sdkPartName\":\"assettype\"}]\n}\n\nexport class GetAssetTypeByAssetTypeIdRequest extends RequestGet<GetAssetTypeByAssetTypeIdPathParameters, GetAssetTypeByAssetTypeIdQueryStringParameters, GetAssetTypeByAssetTypeIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetTypeId\",\"routePart\":\"assettypes\",\"sdkPartName\":\"assettype\"}]\n}\n\nexport class UpdateApiKeyRequest extends RequestPatch<UpdateApiKeyPathParameters, undefined, UpdateApiKeyRequestBody, UpdateApiKeyResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"apiKeyId\",\"routePart\":\"apikeys\",\"sdkPartName\":\"apikey\"}]\n}\n\nexport class GetAppByAppIdRequest extends RequestGet<GetAppByAppIdPathParameters, undefined, GetAppByAppIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"appId\",\"routePart\":\"apps\",\"sdkPartName\":\"app\"}]\n}\n\nexport class GetAssetsByAssetTypeRequest extends RequestGet<GetAssetsByAssetTypePathParameters, GetAssetsByAssetTypeQueryStringParameters, GetAssetsByAssetTypeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetTypeId\",\"routePart\":\"assettypes\",\"sdkPartName\":\"assettype\"},{\"routePart\":\"assets\",\"sdkPartName\":\"assets\"}]\n}\n\nexport class GetAssetTypeCountAtLocationRequest extends RequestGet<GetAssetTypeCountAtLocationPathParameters, undefined, GetAssetTypeCountAtLocationResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetTypeId\",\"routePart\":\"assettypes\",\"sdkPartName\":\"assettype\"},{\"parm\":\"locationId\",\"routePart\":\"locations\",\"sdkPartName\":\"location\"}]\n}\n\nexport class ComposeAssetByAssetTypeRequest extends RequestPost<ComposeAssetByAssetTypePathParameters, undefined, ComposeAssetByAssetTypeRequestBody, ComposeAssetByAssetTypeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetTypeId\",\"routePart\":\"assettypes\",\"sdkPartName\":\"assettype\"},{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"}]\n}\n\nexport class CreateAssetByAssetTypeRequest extends RequestPost<CreateAssetByAssetTypePathParameters, undefined, CreateAssetByAssetTypeRequestBody, CreateAssetByAssetTypeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetTypeId\",\"routePart\":\"assettypes\",\"sdkPartName\":\"assettype\"},{\"routePart\":\"assets\",\"sdkPartName\":\"assets\"}]\n}\n\nexport class GetAssetTypeCountsByLocationRequest extends RequestGet<GetLocationCountsForAssetTypePathParameters, GetLocationCountsForAssetTypeQueryStringParameters, GetLocationCountsForAssetTypeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetTypeId\",\"routePart\":\"assettypes\",\"sdkPartName\":\"assettype\"},{\"routePart\":\"locations\",\"sdkPartName\":\"locations\"}]\n}\n\nexport class UpdateAssetTypeRequest extends RequestPatch<UpdateAssetTypePathParameters, undefined, UpdateAssetTypeRequestBody, UpdateAssetTypeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetTypeId\",\"routePart\":\"assettypes\",\"sdkPartName\":\"assettype\"}]\n}\n\nexport class UpdateAssetTypeCountAtLocationRequest extends RequestPatch<UpdateAssetTypeCountAtLocationPathParameters, undefined, UpdateAssetTypeCountAtLocationRequestBody, UpdateAssetTypeCountAtLocationResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetTypeId\",\"routePart\":\"assettypes\",\"sdkPartName\":\"assettype\"},{\"parm\":\"locationId\",\"routePart\":\"locations\",\"sdkPartName\":\"location\"}]\n}\n\nexport class GetAssetGraphRequest extends RequestGet<GetAssetGraphPathParameters, undefined, GetAssetGraphResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetGraphId\",\"routePart\":\"assetgraphs\",\"sdkPartName\":\"assetgraph\"}]\n}\n\nexport class UpdateAssetGraphRequest extends RequestPatch<UpdateAssetGraphPathParameters, undefined, UpdateAssetGraphRequestBody, UpdateAssetGraphResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetGraphId\",\"routePart\":\"assetgraphs\",\"sdkPartName\":\"assetgraph\"}]\n}\n\nexport class CreateContactByAssetIdRequest extends RequestPost<CreateContactByAssetIdPathParameters, undefined, CreateContactByAssetIdRequestBody, CreateContactByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"contacts\",\"sdkPartName\":\"contacts\"}]\n}\n\nexport class CreateQrCodeByAssetIdRequest extends RequestPost<CreateQrCodeByAssetIdPathParameters, undefined, CreateQrCodeByAssetIdRequestBody, CreateQrCodeByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCodes\"}]\n}\n\nexport class NameRequest extends RequestGet<GetAssetPathParameters, GetAssetQueryStringParameters, GetAssetResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"}]\n}\n\nexport class DeleteNeighborsByAssetIdRequest extends RequestPost<DeleteNeighborsByAssetIdPathParameters, undefined, DeleteNeighborsByAssetIdRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"neighbors/delete\",\"sdkPartName\":\"neighborsDelete\"}]\n}\n\nexport class DeleteAssetGraphRequest extends RequestDelete<DeleteAssetGraphPathParameters, undefined, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetGraphId\",\"routePart\":\"assetgraphs\",\"sdkPartName\":\"assetgraph\"}]\n}\n\nexport class DeleteAssetRequest extends RequestDelete<DeleteAssetPathParameters, undefined, DeleteAssetResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"}]\n}\n\nexport class CreateNeighborsByAssetIdRequest extends RequestPost<CreateNeighborsByAssetIdPathParameters, undefined, CreateNeighborsByAssetIdRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"neighbors\",\"sdkPartName\":\"neighbors\"}]\n}\n\nexport class GetNeighborScanCountByAssetIdRequest extends RequestGet<GetNeighborScanCountByAssetIdPathParameters, GetNeighborScanCountByAssetIdQueryStringParameters, GetNeighborScanCountByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"parm\":\"neighborId\",\"routePart\":\"neighbors\",\"sdkPartName\":\"neighbor\"}]\n}\n\nexport class GetContactsByAssetIdRequest extends RequestGet<GetContactsByAssetIdPathParameters, GetContactsByAssetIdQueryStringParameters, GetContactsByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"contacts\",\"sdkPartName\":\"contacts\"}]\n}\n\nexport class GetAssetHistoryRequest extends RequestGet<GetAssetHistoryByAssetIdPathParameters, GetAssetHistoryByAssetIdQueryStringParameters, GetAssetHistoryByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"history\",\"sdkPartName\":\"history\"}]\n}\n\nexport class GetExternalNeighborScanCountByAssetIdRequest extends RequestGet<GetExternalNeighborScanCountByAssetIdPathParameters, GetExternalNeighborScanCountByAssetIdQueryStringParameters, GetExternalNeighborScanCountByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"parm\":\"url\",\"routePart\":\"urls\",\"sdkPartName\":\"url\"}]\n}\n\nexport class GetNeighborsByAssetIdRequest extends RequestGet<GetNeighborsByAssetIdPathParameters, GetNeighborsByAssetIdQueryStringParameters, GetNeighborsByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"neighbors\",\"sdkPartName\":\"neighbors\"}]\n}\n\nexport class GetScanExportByAssetIdRequest extends RequestPost<GetScanExportByAssetIdPathParameters, undefined, GetScanExportByAssetIdRequestBody, GetScanExportByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"scans/export\",\"sdkPartName\":\"scansExport\"}]\n}\n\nexport class CreateQrCodesByAssetIdRequest extends RequestPost<CreateQrCodesByAssetIdPathParameters, undefined, CreateQrCodesByAssetIdRequestBody, CreateQrCodesByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"qracodes\",\"sdkPartName\":\"qracodes\"}]\n}\n\nexport class GetScanLocationDataByAssetIdRequest extends RequestGet<GetScanLocationDataByAssetIdPathParameters, GetScanLocationDataByAssetIdQueryStringParameters, GetScanLocationDataByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"scans/location\",\"sdkPartName\":\"scansLocation\"}]\n}\n\nexport class GetQrCodesByAssetIdRequest extends RequestGet<GetQrCodesByAssetIdPathParameters, GetQrCodesByAssetIdQueryStringParameters, GetQrCodesByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCodes\"}]\n}\n\nexport class GetScansByAssetIdRequest extends RequestGet<GetScansByAssetIdPathParameters, GetScansByAssetIdQueryStringParameters, GetScansByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"scans\",\"sdkPartName\":\"scans\"}]\n}\n\nexport class UpdateAssetRequest extends RequestPatch<UpdateAssetPathParameters, undefined, UpdateAssetRequestBody, UpdateAssetResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"}]\n}\n\nexport class UnlinkContactToAssetRequest extends RequestDelete<UnlinkContactFromAssetPathParameters, undefined, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"}]\n}\n\nexport class LinkContactToAssetRequest extends RequestPost<LinkContactToAssetPathParameters, undefined, LinkContactToAssetRequestBody, LinkContactToAssetResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"}]\n}\n\nexport class GetAssetsByBatchIdRequest extends RequestGet<GetAssetsByBatchIdPathParameters, GetAssetsByBatchIdQueryStringParameters, GetAssetsByBatchIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"batchId\",\"routePart\":\"batch\",\"sdkPartName\":\"batch\"},{\"routePart\":\"assets\",\"sdkPartName\":\"assets\"}]\n}\n\nexport class CancelDowngradeRequestRequest extends RequestPost<CancelDowngradeRequestPathParameters, undefined, undefined, CancelDowngradeRequestResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"billing/cancelDowngrade\",\"sdkPartName\":\"billingCancelDowngrade\"}]\n}\n\nexport class GetAppAccountByAppAccountIdRequest extends RequestGet<GetAppAccountPathParameters, undefined, GetAppAccountResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"appAccountId\",\"routePart\":\"appsAccounts\",\"sdkPartName\":\"appsAccount\"}]\n}\n\nexport class GetMainAccountByAppAccountIdRequest extends RequestGet<GetMainAccountByAppAccountIdPathParameters, undefined, GetMainAccountByAppAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"appAccountId\",\"routePart\":\"appsAccounts\",\"sdkPartName\":\"appsAccount\"},{\"routePart\":\"main\",\"sdkPartName\":\"main\"}]\n}\n\nexport class DowngradePlanRequest extends RequestPost<DowngradePlanPathParameters, undefined, DowngradePlanRequestBody, DowngradePlanResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"billing/downgradePlan\",\"sdkPartName\":\"billingDowngradePlan\"}]\n}\n\nexport class CancelSubscriptionRequest extends RequestPost<CancelSubscriptionPathParameters, undefined, CancelSubscriptionRequestBody, CancelSubscriptionResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"billing/cancelSubscription\",\"sdkPartName\":\"billingCancelSubscription\"}]\n}\n\nexport class ChangeSubscriptionPreviewRequest extends RequestGet<ChangeSubscriptionPreviewPathParameters, ChangeSubscriptionPreviewQueryStringParameters, ChangeSubscriptionPreviewResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"billing/preview/upgradePlan\",\"sdkPartName\":\"upgradePlanBillingPreview\"}]\n}\n\nexport class CreateSetupIntentRequest extends RequestPost<CreateSetupIntentPathParameters, undefined, CreateSetupIntentRequestBody, CreateSetupIntentResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"billing/setupIntent\",\"sdkPartName\":\"billingSetupIntent\"}]\n}\n\nexport class GetBillingDetailsRequest extends RequestGet<GetBillingDetailsPathParameters, undefined, GetBillingDetailsResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"billing/details\",\"sdkPartName\":\"billingDetail\"}]\n}\n\nexport class GetCurrentPeriodRequest extends RequestGet<GetCurrentPeriodPathParameters, undefined, GetCurrentPeriodResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"billing/currentPeriod\",\"sdkPartName\":\"billingCurrentPeriod\"}]\n}\n\nexport class GetAllAccountsRequest extends RequestGet<undefined, GetAllAccountsQueryStringParameters, GetAllAccountsResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"care/accounts\",\"sdkPartName\":\"careAccounts\"}]\n}\n\nexport class CheckCustomLocatorKeyRangeRequest extends RequestGet<CheckCustomLocatorKeyRangePathParameters, CheckCustomLocatorKeyRangeQueryStringParameters, CheckCustomLocatorKeyRangeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"customDomain\",\"routePart\":\"customdomains\",\"sdkPartName\":\"customdomain\"},{\"routePart\":\"locator/collisions\",\"sdkPartName\":\"locatorCollisions\"}]\n}\n\nexport class GetUserMediasByAssetIdRequest extends RequestGet<GetUserMediasByAssetIdPathParameters, GetUserMediasByAssetIdQueryStringParameters, GetUserMediasByAssetIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"},{\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedias\"}]\n}\n\nexport class DeleteConsentByContactIdRequest extends RequestDelete<DeleteConsentByContactIdPathParameters, DeleteConsentByContactIdQueryStringParameters, DeleteConsentByContactIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"},{\"routePart\":\"consent\",\"sdkPartName\":\"consent\"}]\n}\n\nexport class RetryCustomDomainRequest extends RequestPost<RetryCustomDomainPathParameters, undefined, undefined, RetryCustomDomainResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"customDomain\",\"routePart\":\"customdomains\",\"sdkPartName\":\"customdomain\"},{\"routePart\":\"retry\",\"sdkPartName\":\"retry\"}]\n}\n\nexport class GetInvoicesRequest extends RequestGet<GetInvoicesPathParameters, GetInvoicesQueryStringParameters, GetInvoicesResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"billing/invoices\",\"sdkPartName\":\"billingInvoice\"}]\n}\n\nexport class ChangeSubscriptionRequest extends RequestPost<UpgradePlanPathParameters, undefined, UpgradePlanRequestBody, UpgradePlanResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"billing/upgradePlan\",\"sdkPartName\":\"billingUpgradePlan\"}]\n}\n\nexport class DeleteContactRequest extends RequestDelete<DeleteContactPathParameters, undefined, DeleteContactResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"}]\n}\n\nexport class GetAssetsByContactIdRequest extends RequestGet<GetAssetsByContactIdPathParameters, GetAssetsByContactIdQueryStringParameters, GetAssetsByContactIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"},{\"routePart\":\"assets\",\"sdkPartName\":\"assets\"}]\n}\n\nexport class DeleteCustomDomainRequest extends RequestDelete<DeleteCustomDomainPathParameters, undefined, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"customDomain\",\"routePart\":\"customdomains\",\"sdkPartName\":\"customdomain\"}]\n}\n\nexport class CreateConsentByContactIdRequest extends RequestPost<CreateConsentByContactIdPathParameters, undefined, CreateConsentByContactIdRequestBody, CreateConsentByContactIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"},{\"routePart\":\"consent\",\"sdkPartName\":\"consent\"}]\n}\n\nexport class GetConsentByContactIdRequest extends RequestGet<GetConsentByContactIdPathParameters, GetConsentByContactIdQueryStringParameters, GetConsentByContactIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"},{\"routePart\":\"consent\",\"sdkPartName\":\"consent\"}]\n}\n\nexport class GetScanLocationDataByContactIdRequest extends RequestGet<GetScanLocationDataByContactIdPathParameters, GetScanLocationDataByContactIdQueryStringParameters, GetScanLocationDataByContactIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"},{\"routePart\":\"scans/location\",\"sdkPartName\":\"scansLocation\"}]\n}\n\nexport class GetScansByContactIdRequest extends RequestGet<GetScansByContactIdPathParameters, undefined, GetScansByContactIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"},{\"routePart\":\"scans\",\"sdkPartName\":\"scans\"}]\n}\n\nexport class LinkContactToScanRequest extends RequestPost<LinkContactToScanPathParameters, undefined, LinkContactToScanRequestBody, LinkContactToScanResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"},{\"parm\":\"scanId\",\"routePart\":\"scans\",\"sdkPartName\":\"scan\"}]\n}\n\nexport class GetScanExportByContactIdRequest extends RequestPost<GetScanExportByContactIdPathParameters, undefined, GetScanExportByContactIdRequestBody, GetScanExportByContactIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"},{\"routePart\":\"scans/export\",\"sdkPartName\":\"scansExport\"}]\n}\n\nexport class GetContactExportByContactIdRequest extends RequestPost<GetContactExportByContactIdPathParameters, undefined, GetContactExportByContactIdRequestBody, GetContactExportByContactIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"},{\"routePart\":\"export\",\"sdkPartName\":\"export\"}]\n}\n\nexport class UpdateContactRequest extends RequestPatch<UpdateContactPathParameters, undefined, UpdateContactRequestBody, UpdateContactResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"}]\n}\n\nexport class DeleteJobRequest extends RequestDelete<DeleteJobPathParameters, undefined, DeleteJobResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"jobId\",\"routePart\":\"jobs\",\"sdkPartName\":\"job\"}]\n}\n\nexport class GetContactRequest extends RequestGet<GetContactPathParameters, undefined, GetContactResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"contactId\",\"routePart\":\"contacts\",\"sdkPartName\":\"contact\"}]\n}\n\nexport class CreateUserByInvitationIdRequest extends RequestPost<CreateUserByInvitationIdPathParameters, undefined, undefined, CreateUserByInvitationIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"invitationId\",\"routePart\":\"invitations\",\"sdkPartName\":\"invitation\"},{\"routePart\":\"users\",\"sdkPartName\":\"users\"}]\n}\n\nexport class GetInvitationRequest extends RequestGet<GetInvitationPathParameters, undefined, GetInvitationResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"invitationId\",\"routePart\":\"invitations\",\"sdkPartName\":\"invitation\"}]\n}\n\nexport class DeletePrintJobRequest extends RequestDelete<DeletePrintJobPathParameters, undefined, DeletePrintJobResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"printJobId\",\"routePart\":\"printJobs\",\"sdkPartName\":\"printJob\"}]\n}\n\nexport class DeleteInvitationRequest extends RequestDelete<DeleteInvitationPathParameters, undefined, DeleteInvitationResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"invitationId\",\"routePart\":\"invitations\",\"sdkPartName\":\"invitation\"}]\n}\n\nexport class GetJobRequest extends RequestGet<GetJobPathParameters, undefined, GetJobResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"jobId\",\"routePart\":\"jobs\",\"sdkPartName\":\"job\"}]\n}\n\nexport class SendSupportEmailRequest extends RequestPost<undefined, undefined, SendSupportEmailRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"support\",\"sdkPartName\":\"support\"}]\n}\n\nexport class CreateAssetCreationJobByProjectIdRequest extends RequestPost<CreateAssetCreationJobByProjectIdPathParameters, undefined, CreateAssetCreationJobByProjectIdRequestBody, CreateAssetCreationJobByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"jobs/assetbatch\",\"sdkPartName\":\"jobsAssetbatch\"}]\n}\n\nexport class GetQrCodeLinkRequest extends RequestGet<GetQrCodeLinkPathParameters, undefined, GetQrCodeLinkResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"qrCodeLink\",\"routePart\":\"qrcodelinks\",\"sdkPartName\":\"qrcodelink\"}]\n}\n\nexport class CreateAssetCreationPresignedUrlRequest extends RequestPost<CreateAssetCreationPresignedUrlByProjectIdPathParameters, undefined, CreateAssetCreationPresignedUrlByProjectIdRequestBody, CreateAssetCreationPresignedUrlByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"jobs/assetbatch/presignedurl\",\"sdkPartName\":\"presignedurlJobsAssetbatch\"}]\n}\n\nexport class InvokePrintJobByJobIdRequest extends RequestPatch<InvokePrintJobByJobIdPathParameters, undefined, undefined, InvokePrintJobByJobIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"printJobId\",\"routePart\":\"printJobs\",\"sdkPartName\":\"printJob\"}]\n}\n\nexport class CreateContactByProjectIdRequest extends RequestPost<CreateContactByProjectIdPathParameters, undefined, CreateContactByProjectIdRequestBody, CreateContactByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"contacts\",\"sdkPartName\":\"contacts\"}]\n}\n\nexport class CreateAssetByProjectIdRequest extends RequestPost<CreateAssetByProjectIdPathParameters, undefined, CreateAssetByProjectIdRequestBody, CreateAssetByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"assets\",\"sdkPartName\":\"assets\"}]\n}\n\nexport class CreateAssetGraphByProjectIdRequest extends RequestPost<CreateAssetGraphByProjectIdPathParameters, undefined, CreateAssetGraphByProjectIdRequestBody, CreateAssetGraphByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"assetgraphs\",\"sdkPartName\":\"assetgraphs\"}]\n}\n\nexport class CreateSelfQueuePrintJobByProjectIdRequest extends RequestPost<CreateSelfQueuePrintJobByProjectIdPathParameters, undefined, CreateSelfQueuePrintJobByProjectIdRequestBody, CreateSelfQueuePrintJobByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"selfqueueprint\",\"sdkPartName\":\"selfqueueprint\"}]\n}\n\nexport class CreateQrCodeByProjectIdRequest extends RequestPost<CreateQrCodeByProjectIdPathParameters, undefined, CreateQrCodeByProjectIdRequestBody, CreateQrCodeByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCodes\"}]\n}\n\nexport class CreateAssetBatchValidationJobByProjectIdRequest extends RequestPost<CreateAssetBatchValidationJobByProjectIdPathParameters, undefined, CreateAssetBatchValidationJobByProjectIdRequestBody, CreateAssetBatchValidationJobByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"jobs/assetbatch/validation\",\"sdkPartName\":\"validationJobsAssetbatch\"}]\n}\n\nexport class CreateAssetsByProjectIdRequest extends RequestPost<CreateAssetsByProjectIdPathParameters, undefined, CreateAssetsByProjectIdRequestBody, CreateAssetsByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"assets/batch\",\"sdkPartName\":\"assetsBatch\"}]\n}\n\nexport class CreateSmsTemplateByProjectIdRequest extends RequestPost<CreateSmsTemplateByProjectIdPathParameters, undefined, CreateSmsTemplateByProjectIdRequestBody, CreateSmsTemplateByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"smstemplates\",\"sdkPartName\":\"smsTemplates\"}]\n}\n\nexport class DeleteContactsByProjectIdRequest extends RequestDelete<DeleteContactsByProjectIdPathParameters, DeleteContactsByProjectIdQueryStringParameters, DeleteContactsByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"contacts/batch\",\"sdkPartName\":\"contactsBatch\"}]\n}\n\nexport class CreateTemplatedPrintJobByProjectIdRequest extends RequestPost<CreateTemplatedPrintJobByProjectIdPathParameters, undefined, CreateTemplatedPrintJobByProjectIdRequestBody, CreateTemplatedPrintJobByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"printJobs\",\"sdkPartName\":\"printJobs\"}]\n}\n\nexport class DeleteProjectRequest extends RequestDelete<DeleteProjectPathParameters, undefined, DeleteProjectResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"}]\n}\n\nexport class CreateContactsByProjectIdRequest extends RequestPost<CreateContactsByProjectIdPathParameters, undefined, CreateContactsByProjectIdRequestBody, CreateContactsByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"contacts/batch\",\"sdkPartName\":\"contactsBatch\"}]\n}\n\nexport class CreateTemplatedPrintPreviewByProjectIdRequest extends RequestPost<CreateTemplatedPrintPreviewByProjectIdPathParameters, undefined, CreateTemplatedPrintPreviewByProjectIdRequestBody, CreateTemplatedPrintPreviewByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"templatedPrint/preview\",\"sdkPartName\":\"templatedPrintPreview\"}]\n}\n\nexport class DeleteSmsTemplateByProjectIdRequest extends RequestDelete<DeleteSmsTemplatePathParameters, undefined, DeleteSmsTemplateResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"parm\":\"smsTemplateName\",\"routePart\":\"smstemplates\",\"sdkPartName\":\"smsTemplate\"}]\n}\n\nexport class GetAdvancedContactReportByProjectIdRequest extends RequestGet<GetAdvancedContactReportByProjectIdPathParameters, GetAdvancedContactReportByProjectIdQueryStringParameters, GetAdvancedContactReportByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"contacts/report/advanced\",\"sdkPartName\":\"advancedContactsReport\"}]\n}\n\nexport class GetAdvancedAssetReportByProjectIdRequest extends RequestGet<GetAdvancedAssetReportByProjectIdPathParameters, GetAdvancedAssetReportByProjectIdQueryStringParameters, GetAdvancedAssetReportByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"assets/report/advanced\",\"sdkPartName\":\"advancedAssetsReport\"}]\n}\n\nexport class GetAdvancedScanReportByProjectIdRequest extends RequestGet<GetAdvancedScanReportByProjectIdPathParameters, GetAdvancedScanReportByProjectIdQueryStringParameters, GetAdvancedScanReportByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"scans/report/advanced\",\"sdkPartName\":\"advancedScansReport\"}]\n}\n\nexport class GetAssetExportByProjectIdRequest extends RequestPost<GetAssetExportByProjectIdPathParameters, undefined, GetAssetExportByProjectIdRequestBody, GetAssetExportByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"assets/export\",\"sdkPartName\":\"assetsExport\"}]\n}\n\nexport class GetBasicContactReportByProjectIdRequest extends RequestGet<GetBasicContactReportByProjectIdPathParameters, undefined, GetBasicContactReportByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"contacts/report/basic\",\"sdkPartName\":\"basicContactsReport\"}]\n}\n\nexport class GetAssetGraphsByProjectIdRequest extends RequestGet<GetAssetGraphsByProjectIdPathParameters, GetAssetGraphsByProjectIdQueryStringParameters, GetAssetGraphsByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"assetgraphs\",\"sdkPartName\":\"assetgraphs\"}]\n}\n\nexport class GetBasicAssetReportByProjectIdRequest extends RequestGet<GetBasicAssetReportByProjectIdPathParameters, undefined, GetBasicAssetReportByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"assets/report/basic\",\"sdkPartName\":\"basicAssetsReport\"}]\n}\n\nexport class GetContactExportByProjectIdRequest extends RequestPost<GetContactExportByProjectIdPathParameters, undefined, GetContactExportByProjectIdRequestBody, GetContactExportByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"contacts/export\",\"sdkPartName\":\"contactsExport\"}]\n}\n\nexport class GetConsentByProjectIdRequest extends RequestGet<GetConsentByProjectIdPathParameters, GetConsentByProjectIdQueryStringParameters, GetConsentByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"consent\",\"sdkPartName\":\"consent\"}]\n}\n\nexport class GetBatchesByProjectIdRequest extends RequestGet<GetBatchesByProjectIdPathParameters, GetBatchesByProjectIdQueryStringParameters, GetBatchesByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"batch\",\"sdkPartName\":\"batch\"}]\n}\n\nexport class GetMostScannedAssetsByProjectIdRequest extends RequestGet<GetMostScannedAssetsByProjectIdPathParameters, GetMostScannedAssetsByProjectIdQueryStringParameters, GetMostScannedAssetsByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"assets/mostscanned\",\"sdkPartName\":\"assetsMostscanned\"}]\n}\n\nexport class GetAssetsByProjectIdRequest extends RequestGet<GetAssetsByProjectIdPathParameters, GetAssetsByProjectIdQueryStringParameters, GetAssetsByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"assets\",\"sdkPartName\":\"assets\"}]\n}\n\nexport class GetContactsByProjectIdRequest extends RequestGet<GetContactsByProjectIdPathParameters, GetContactsByProjectIdQueryStringParameters, GetContactsByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"contacts\",\"sdkPartName\":\"contacts\"}]\n}\n\nexport class GetScanDayOfWeekByProjectIdRequest extends RequestGet<GetScanDayOfWeekByProjectIdPathParameters, GetScanDayOfWeekByProjectIdQueryStringParameters, GetScanDayOfWeekByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"scans/dayofweek\",\"sdkPartName\":\"scansDayofweek\"}]\n}\n\nexport class GetScanTimelineByProjectIdRequest extends RequestGet<GetScanTimelineByProjectIdPathParameters, GetScanTimelineByProjectIdQueryStringParameters, GetScanTimelineByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"scans/timeline\",\"sdkPartName\":\"scansTimeline\"}]\n}\n\nexport class GetScanTimeOfDayByProjectIdRequest extends RequestGet<GetScanTimeOfDayByProjectIdPathParameters, GetScanTimeOfDayByProjectIdQueryStringParameters, GetScanTimeOfDayByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"scans/timeofday\",\"sdkPartName\":\"scansTimeofday\"}]\n}\n\nexport class GetScanExportByProjectIdRequest extends RequestPost<GetScanExportByProjectIdPathParameters, undefined, GetScanExportByProjectIdRequestBody, GetScanExportByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"scans/export\",\"sdkPartName\":\"scansExport\"}]\n}\n\nexport class GetScansByProjectIdRequest extends RequestGet<GetScansByProjectIdPathParameters, GetScansByProjectIdQueryStringParameters, GetScansByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"scans\",\"sdkPartName\":\"scans\"}]\n}\n\nexport class GetProjectByProjectIdRequest extends RequestGet<GetProjectByProjectIdPathParameters, undefined, GetProjectByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"}]\n}\n\nexport class GetUserMediasByProjectIdRequest extends RequestGet<GetUserMediasByProjectIdPathParameters, GetUserMediasByProjectIdQueryStringParameters, GetUserMediasByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedias\"}]\n}\n\nexport class GetQrCodesByProjectIdRequest extends RequestGet<GetQrCodesByProjectIdPathParameters, GetQrCodesByProjectIdQueryStringParameters, GetQrCodesByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"},{\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCodes\"}]\n}\n\nexport class UpdateQrCodeLogoByQrCodeLogoIdRequest extends RequestPatch<UpdateQrCodeLogoByQrCodeLogoIdPathParameters, undefined, UpdateQrCodeLogoByQrCodeLogoIdRequestBody, UpdateQrCodeLogoByQrCodeLogoIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"qrCodeLogoId\",\"routePart\":\"qrcodelogos\",\"sdkPartName\":\"qrcodelogo\"}]\n}\n\nexport class CreateLinkByQrCodeRequest extends RequestPost<CreateLinkByQrCodePathParameters, undefined, CreateLinkByQrCodeRequestBody, CreateLinkByQrCodeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"qrCodeId\",\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCode\"},{\"routePart\":\"links\",\"sdkPartName\":\"links\"}]\n}\n\nexport class ValidateFileRequest extends RequestPost<ValidateFilePathParameters, undefined, undefined, ValidateFileResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"fileId\",\"routePart\":\"files\",\"sdkPartName\":\"file\"},{\"routePart\":\"validate\",\"sdkPartName\":\"validate\"}]\n}\n\nexport class GetQrCodeRequest extends RequestGet<GetQrCodePathParameters, GetQrCodeQueryStringParameters, GetQrCodeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"qrCodeId\",\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCode\"}]\n}\n\nexport class UpdateProjectByProjectIdRequest extends RequestPatch<UpdateProjectByProjectIdPathParameters, undefined, UpdateProjectByProjectIdRequestBody, UpdateProjectByProjectIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"}]\n}\n\nexport class GetLinksByQrCodeRequest extends RequestGet<GetLinksByQrCodePathParameters, undefined, GetLinksByQrCodeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"qrCodeId\",\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCode\"},{\"routePart\":\"links\",\"sdkPartName\":\"links\"}]\n}\n\nexport class GetFileRequest extends RequestGet<GetFilePathParameters, undefined, GetFileResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"fileId\",\"routePart\":\"files\",\"sdkPartName\":\"file\"}]\n}\n\nexport class GetQrCodeLogoByQrCodeLogoIdRequest extends RequestGet<GetQrCodeLogoByQrCodeLogoIdPathParameters, undefined, GetQrCodeLogoByQrCodeLogoIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"qrCodeLogoId\",\"routePart\":\"qrcodelogos\",\"sdkPartName\":\"qrcodelogo\"}]\n}\n\nexport class DeleteQrCodeRequest extends RequestDelete<DeleteQrCodePathParameters, undefined, DeleteQrCodeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"qrCodeId\",\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCode\"}]\n}\n\nexport class UpdateQrCodeRequest extends RequestPatch<UpdateQrCodePathParameters, undefined, UpdateQrCodeRequestBody, UpdateQrCodeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"qrCodeId\",\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCode\"}]\n}\n\nexport class DeleteLinkByQrCodeRequest extends RequestDelete<DeleteLinkByQrCodePathParameters, undefined, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"qrCodeId\",\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCode\"},{\"parm\":\"link\",\"routePart\":\"links\",\"sdkPartName\":\"link\"}]\n}\n\nexport class CreateContactByScanIdRequest extends RequestPost<CreateContactByScanIdPathParameters, undefined, CreateContactByScanIdRequestBody, CreateContactByScanIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"scanId\",\"routePart\":\"scans\",\"sdkPartName\":\"scan\"},{\"routePart\":\"contacts\",\"sdkPartName\":\"contacts\"}]\n}\n\nexport class SaveGeolocationByScanIdRequest extends RequestPatch<SaveGeolocationByScanIdPathParameters, undefined, SaveGeolocationByScanIdRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"scanId\",\"routePart\":\"scans\",\"sdkPartName\":\"scan\"}]\n}\n\nexport class GetScanRequest extends RequestGet<GetScanPathParameters, GetScanQueryStringParameters, GetScanResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"scanId\",\"routePart\":\"scans\",\"sdkPartName\":\"scan\"}]\n}\n\nexport class UpdateScanCustomAttributeRequest extends RequestPatch<UpdateScanCustomAttributePathParameters, undefined, UpdateScanCustomAttributeRequestBody, UpdateScanCustomAttributeResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"scanId\",\"routePart\":\"scans\",\"sdkPartName\":\"scan\"},{\"routePart\":\"customAttribute\",\"sdkPartName\":\"customAttribute\"}]\n}\n\nexport class UpdateAssetsLocationsRequest extends RequestPatch<BatchUpdateAssetLocationsPathParameters, undefined, BatchUpdateAssetLocationsRequestBody, BatchUpdateAssetLocationsResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"locationId\",\"routePart\":\"locations\",\"sdkPartName\":\"location\"},{\"routePart\":\"assets\",\"sdkPartName\":\"assets\"}]\n}\n\nexport class DeleteLocationRequest extends RequestDelete<DeleteLocationPathParameters, DeleteLocationQueryStringParameters, DeleteLocationResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"locationId\",\"routePart\":\"locations\",\"sdkPartName\":\"location\"}]\n}\n\nexport class UpdateLocationRequest extends RequestPatch<UpdateLocationPathParameters, undefined, UpdateLocationRequestBody, UpdateLocationResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"locationId\",\"routePart\":\"locations\",\"sdkPartName\":\"location\"}]\n}\n\nexport class CreateApiKeyByAccountIdRequest extends RequestPost<CreateApiKeyByAccountIdPathParameters, undefined, CreateApiKeyByAccountIdRequestBody, CreateApiKeyByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"apikeys\",\"sdkPartName\":\"apikeys\"}]\n}\n\nexport class GetAccountAccessDataRequest extends RequestGet<CheckAccountAccessPathParameters, undefined, CheckAccountAccessResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"},{\"routePart\":\"confirm\",\"sdkPartName\":\"confirm\"}]\n}\n\nexport class GetAssetsByLocationIdRequest extends RequestGet<GetAssetsByLocationPathParameters, GetAssetsByLocationQueryStringParameters, GetAssetsByLocationResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"locationId\",\"routePart\":\"locations\",\"sdkPartName\":\"location\"},{\"routePart\":\"assets\",\"sdkPartName\":\"assets\"}]\n}\n\nexport class CreateAssetTypeByAccountIdRequest extends RequestPost<CreateAssetTypeByAccountIdPathParameters, undefined, CreateAssetTypeByAccountIdRequestBody, CreateAssetTypeByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"assettypes\",\"sdkPartName\":\"assettypes\"}]\n}\n\nexport class CreateAppRequest extends RequestPost<CreateAppByAccountIdPathParameters, undefined, CreateAppByAccountIdRequestBody, CreateAppByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"apps\",\"sdkPartName\":\"apps\"}]\n}\n\nexport class CheckUrlSafetyByAccountIdRequest extends RequestPost<CheckUrlSafetyByAccountIdPathParameters, undefined, CheckUrlSafetyByAccountIdRequestBody, CheckUrlSafetyByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"urlSafeties\",\"sdkPartName\":\"urlSafeties\"}]\n}\n\nexport class CreateLocationByAccountIdRequest extends RequestPost<CreateLocationByAccountIdPathParameters, undefined, CreateLocationByAccountIdRequestBody, CreateLocationByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"locations\",\"sdkPartName\":\"locations\"}]\n}\n\nexport class CreatePrintPageTemplateByAccountIdRequest extends RequestPost<CreatePrintPageTemplateByAccountIdPathParameters, undefined, CreatePrintPageTemplateByAccountIdRequestBody, CreatePrintPageTemplateByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"printPageTemplates\",\"sdkPartName\":\"printPageTemplates\"}]\n}\n\nexport class CreateImageUploadPresignedUrlRequest extends RequestPost<CreateImageUploadPresignedPathParameters, undefined, CreateImageUploadPresignedRequestBody, CreateImageUploadPresignedResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"image/upload\",\"sdkPartName\":\"imageUpload\"}]\n}\n\nexport class CreateInvitationByAccountIdRequest extends RequestPost<CreateInvitationByAccountIdPathParameters, undefined, CreateInvitationByAccountIdRequestBody, CreateInvitationByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"invitations\",\"sdkPartName\":\"invitations\"}]\n}\n\nexport class CreateQrCodeLogoByAccountRequest extends RequestPost<CreateQrCodeLogoByAccountIdPathParameters, undefined, CreateQrCodeLogoByAccountIdRequestBody, CreateQrCodeLogoByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"qrcodelogos\",\"sdkPartName\":\"qrcodelogos\"}]\n}\n\nexport class CreateInvitationsByAccountIdRequest extends RequestPost<CreateInvitationsByAccountIdPathParameters, undefined, CreateInvitationsByAccountIdRequestBody, CreateInvitationsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"invitations/batch\",\"sdkPartName\":\"invitationsBatch\"}]\n}\n\nexport class CreatePrintStickerTemplateByAccountIdRequest extends RequestPost<CreatePrintStickerTemplateByAccountIdPathParameters, undefined, CreatePrintStickerTemplateByAccountIdRequestBody, CreatePrintStickerTemplateByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"printStickerTemplates\",\"sdkPartName\":\"printStickerTemplates\"}]\n}\n\nexport class CreateProjectByAccountIdRequest extends RequestPost<CreateProjectByAccountIdPathParameters, undefined, CreateProjectByAccountIdRequestBody, CreateProjectByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"projects\",\"sdkPartName\":\"projects\"}]\n}\n\nexport class CreateQrCodeStylingTemplateByAccountRequest extends RequestPost<CreateQrCodeStylingTemplateByAccountIdPathParameters, undefined, CreateQrCodeStylingTemplateByAccountIdRequestBody, CreateQrCodeStylingTemplateByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"stylingtemplates\",\"sdkPartName\":\"stylingtemplates\"}]\n}\n\nexport class CreateTicketByAccountIdRequest extends RequestPost<CreateTicketByAccountIdPathParameters, undefined, CreateTicketByAccountIdRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"zendeskTicket\",\"sdkPartName\":\"zendeskTicket\"}]\n}\n\nexport class CreateUserMediaPresignedUrlByAccountIdRequest extends RequestPost<CreateUserMediaPresignedUrlByAccountIdPathParameters, undefined, CreateUserMediaPresignedUrlByAccountIdRequestBody, CreateUserMediaPresignedUrlByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"usermedias/presignedurl\",\"sdkPartName\":\"usermediasPresignedurl\"}]\n}\n\nexport class DeleteContactsByAccountIdRequest extends RequestDelete<DeleteContactsByAccountIdPathParameters, DeleteContactsByAccountIdQueryStringParameters, DeleteContactsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"contacts/batch\",\"sdkPartName\":\"contactsBatch\"}]\n}\n\nexport class DeleteUserByAccountIdRequest extends RequestDelete<DeleteUserByAccountIdPathParameters, undefined, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"}]\n}\n\nexport class GetAccountRequest extends RequestGet<GetAccountPathParameters, undefined, GetAccountResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"}]\n}\n\nexport class GetCustomDomainRequest extends RequestGet<GetAccountDomainPathParameters, undefined, GetAccountDomainResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"parm\":\"customDomain\",\"routePart\":\"customDomains\",\"sdkPartName\":\"customDomain\"}]\n}\n\nexport class GetAllAppsByAccountIdRequest extends RequestGet<GetAllAppsByAccountIdPathParameters, GetAllAppsByAccountIdQueryStringParameters, GetAllAppsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"owner/apps\",\"sdkPartName\":\"ownerApps\"}]\n}\n\nexport class GetAdvancedContactReportByAccountIdRequest extends RequestGet<GetAdvancedContactReportByAccountIdPathParameters, GetAdvancedContactReportByAccountIdQueryStringParameters, GetAdvancedContactReportByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"contacts/report/advanced\",\"sdkPartName\":\"advancedContactsReport\"}]\n}\n\nexport class GetAdvancedScanReportByAccountIdRequest extends RequestGet<GetAdvancedScanReportByAccountIdPathParameters, GetAdvancedScanReportByAccountIdQueryStringParameters, GetAdvancedScanReportByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"scans/report/advanced\",\"sdkPartName\":\"advancedScansReport\"}]\n}\n\nexport class GetApiKeysByAccountIdRequest extends RequestGet<GetApiKeysByAccountIdPathParameters, GetApiKeysByAccountIdQueryStringParameters, GetApiKeysByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"apikeys\",\"sdkPartName\":\"apikeys\"}]\n}\n\nexport class GetAssetGraphsByAccountIdRequest extends RequestGet<GetAssetGraphsByAccountIdPathParameters, GetAssetGraphsByAccountIdQueryStringParameters, GetAssetGraphsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"assetgraphs\",\"sdkPartName\":\"assetgraphs\"}]\n}\n\nexport class GetAssetTypesByAccountIdRequest extends RequestGet<GetAssetTypesByAccountIdPathParameters, GetAssetTypesByAccountIdQueryStringParameters, GetAssetTypesByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"assettypes\",\"sdkPartName\":\"assettypes\"}]\n}\n\nexport class CreateUserMediaMultipartPresignedUrlByAccountIdRequest extends RequestPost<CreateUserMediaMultipartPresignedUrlByAccountIdPathParameters, undefined, CreateUserMediaMultipartPresignedUrlByAccountIdRequestBody, CreateUserMediaMultipartPresignedUrlByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"usermedias/presignedurlmultipart\",\"sdkPartName\":\"usermediasPresignedurlmultipart\"}]\n}\n\nexport class GetAssetExportByAccountIdRequest extends RequestPost<GetAssetExportByAccountIdPathParameters, undefined, GetAssetExportByAccountIdRequestBody, GetAssetExportByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"assets/export\",\"sdkPartName\":\"assetsExport\"}]\n}\n\nexport class GetAdvancedAssetReportByAccountIdRequest extends RequestGet<GetAdvancedAssetReportByAccountIdPathParameters, GetAdvancedAssetReportByAccountIdQueryStringParameters, GetAdvancedAssetReportByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"assets/report/advanced\",\"sdkPartName\":\"advancedAssetsReport\"}]\n}\n\nexport class GetBasicAssetReportByAccountIdRequest extends RequestGet<GetBasicAssetReportByAccountIdPathParameters, undefined, GetBasicAssetReportByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"assets/report/basic\",\"sdkPartName\":\"basicAssetsReport\"}]\n}\n\nexport class GetAssetsScanCountByAccountIdRequest extends RequestPost<GetAssetsScanCountByAccountIdPathParameters, GetAssetsScanCountByAccountIdQueryStringParameters, GetAssetsScanCountByAccountIdRequestBody, GetAssetsScanCountByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"assets/scans\",\"sdkPartName\":\"assetsScans\"}]\n}\n\nexport class GetBasicContactReportByAccountIdRequest extends RequestGet<GetBasicContactReportByAccountIdPathParameters, undefined, GetBasicContactReportByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"contacts/report/basic\",\"sdkPartName\":\"basicContactsReport\"}]\n}\n\nexport class GetConsentByAccountIdRequest extends RequestGet<GetConsentByAccountIdPathParameters, GetConsentByAccountIdQueryStringParameters, GetConsentByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"consent\",\"sdkPartName\":\"consent\"}]\n}\n\nexport class CreateQueryableCustomAttributeRequest extends RequestPost<CreateQueryableCustomAttributeByAccountIdPathParameters, undefined, CreateQueryableCustomAttributeByAccountIdRequestBody, CreateQueryableCustomAttributeByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"customattributes\",\"sdkPartName\":\"customattributes\"}]\n}\n\nexport class GetContactExportByAccountIdRequest extends RequestPost<GetContactExportByAccountIdPathParameters, undefined, GetContactExportByAccountIdRequestBody, GetContactExportByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"contacts/export\",\"sdkPartName\":\"contactsExport\"}]\n}\n\nexport class GetBatchesByAccountIdRequest extends RequestGet<GetBatchesByAccountIdPathParameters, GetBatchesByAccountIdQueryStringParameters, GetBatchesByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"batch\",\"sdkPartName\":\"batch\"}]\n}\n\nexport class GetDomainsByAccountIdRequest extends RequestGet<GetDomainsByAccountIdPathParameters, GetDomainsByAccountIdQueryStringParameters, GetDomainsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"customDomains\",\"sdkPartName\":\"customDomains\"}]\n}\n\nexport class GetContactsByAccountIdRequest extends RequestGet<GetContactsByAccountIdPathParameters, GetContactsByAccountIdQueryStringParameters, GetContactsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"contacts\",\"sdkPartName\":\"contacts\"}]\n}\n\nexport class GetJobsByAccountIdRequest extends RequestGet<GetJobsByAccountIdPathParameters, GetJobsByAccountIdQueryStringParameters, GetJobsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"jobs\",\"sdkPartName\":\"jobs\"}]\n}\n\nexport class GetPricePlanByAccountIdRequest extends RequestGet<GetPricePlanByAccountIdPathParameters, undefined, GetPricePlanByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"priceplan\",\"sdkPartName\":\"pricePlan\"}]\n}\n\nexport class GetPrintJobsByAccountIdRequest extends RequestGet<GetPrintJobsByAccountIdPathParameters, GetPrintJobsByAccountIdQueryStringParameters, GetPrintJobsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"printJobs\",\"sdkPartName\":\"printJobs\"}]\n}\n\nexport class GetAssetsByAccountIdRequest extends RequestGet<GetAssetsByAccountIdPathParameters, GetAssetsByAccountIdQueryStringParameters, GetAssetsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"assets\",\"sdkPartName\":\"assets\"}]\n}\n\nexport class GetPrintPageTemplatesByAccountIdRequest extends RequestGet<GetPrintPageTemplatesByAccountIdPathParameters, GetPrintPageTemplatesByAccountIdQueryStringParameters, GetPrintPageTemplatesByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"printPageTemplates\",\"sdkPartName\":\"printPageTemplates\"}]\n}\n\nexport class GetPrintStickerTemplatesByAccountIdRequest extends RequestGet<GetPrintStickerTemplatesByAccountIdPathParameters, GetPrintStickerTemplatesByAccountIdQueryStringParameters, GetPrintStickerTemplatesByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"printStickerTemplates\",\"sdkPartName\":\"printStickerTemplates\"}]\n}\n\nexport class GetLocationsByAccountIdRequest extends RequestGet<GetLocationsByAccountIdPathParameters, GetLocationsByAccountIdQueryStringParameters, GetLocationsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"locations\",\"sdkPartName\":\"locations\"}]\n}\n\nexport class GetProjectsByAccountIdRequest extends RequestGet<GetProjectsByAccountIdPathParameters, GetProjectsByAccountIdQueryStringParameters, GetProjectsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"projects\",\"sdkPartName\":\"projects\"}]\n}\n\nexport class GetInstalledAppsByAccountIdRequest extends RequestGet<GetInstalledAppsByAccountIdPathParameters, GetInstalledAppsByAccountIdQueryStringParameters, GetInstalledAppsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"apps\",\"sdkPartName\":\"apps\"}]\n}\n\nexport class GetPluginsByAccountIdRequest extends RequestGet<GetPluginsByAccountIdPathParameters, undefined, GetPluginsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"plugins\",\"sdkPartName\":\"plugins\"}]\n}\n\nexport class GetMostScannedAssetsByAccountIdRequest extends RequestGet<GetMostScannedAssetsByAccountIdPathParameters, GetMostScannedAssetsByAccountIdQueryStringParameters, GetMostScannedAssetsByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"assets/mostscanned\",\"sdkPartName\":\"assetsMostscanned\"}]\n}\n\nexport class GetQrCodeStylingTemplatesByAccountIdRequest extends RequestGet<GetQrCodeStylingTemplatesByAccountIdPathParameters, GetQrCodeStylingTemplatesByAccountIdQueryStringParameters, GetQrCodeStylingTemplatesByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"stylingtemplates\",\"sdkPartName\":\"stylingtemplates\"}]\n}\n\nexport class GetScanTimeOfDayByAccountIdRequest extends RequestGet<GetScanTimeOfDayByAccountIdPathParameters, GetScanTimeOfDayByAccountIdQueryStringParameters, GetScanTimeOfDayByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"scans/timeofday\",\"sdkPartName\":\"scansTimeofday\"}]\n}\n\nexport class GetProjectExportByAccountIdRequest extends RequestPost<GetProjectExportByAccountIdPathParameters, undefined, GetProjectExportByAccountIdRequestBody, GetProjectExportByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"projects/export\",\"sdkPartName\":\"projectsExport\"}]\n}\n\nexport class GetQrCodeLogosByAccountIdRequest extends RequestGet<GetQrCodeLogosByAccountIdPathParameters, GetQrCodeLogosByAccountIdQueryStringParameters, GetQrCodeLogosByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"qrcodelogos\",\"sdkPartName\":\"qrcodelogos\"}]\n}\n\nexport class GetScanTimelineByAccountIdRequest extends RequestGet<GetScanTimelineByAccountIdPathParameters, GetScanTimelineByAccountIdQueryStringParameters, GetScanTimelineByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"scans/timeline\",\"sdkPartName\":\"scansTimeline\"}]\n}\n\nexport class GetQueryableCustomAttributeRequest extends RequestGet<GetQueryableCustomAttributesByAccountIdPathParameters, GetQueryableCustomAttributesByAccountIdQueryStringParameters, GetQueryableCustomAttributesByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"customattributes\",\"sdkPartName\":\"customattributes\"}]\n}\n\nexport class GetScanExportByAccountIdRequest extends RequestPost<GetScanExportByAccountIdPathParameters, undefined, GetScanExportByAccountIdRequestBody, GetScanExportByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"scans/export\",\"sdkPartName\":\"scansExport\"}]\n}\n\nexport class GetScanDayOfWeekByAccountIdRequest extends RequestGet<GetScanDayOfWeekByAccountIdPathParameters, GetScanDayOfWeekByAccountIdQueryStringParameters, GetScanDayOfWeekByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"scans/dayofweek\",\"sdkPartName\":\"scansDayofweek\"}]\n}\n\nexport class GetQrCodesByAccountIdRequest extends RequestGet<GetQrCodesByAccountIdPathParameters, GetQrCodesByAccountIdQueryStringParameters, GetQrCodesByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"qrcodes\",\"sdkPartName\":\"qrCodes\"}]\n}\n\nexport class GetScansByAccountIdRequest extends RequestGet<GetScansByAccountIdPathParameters, GetScansByAccountIdQueryStringParameters, GetScansByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"scans\",\"sdkPartName\":\"scans\"}]\n}\n\nexport class GetUserMediasByAccountIdRequest extends RequestGet<GetUserMediasByAccountIdPathParameters, GetUserMediasByAccountIdQueryStringParameters, GetUserMediasByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedias\"}]\n}\n\nexport class GetUserByAccountIdRequest extends RequestGet<GetUserByAccountIdPathParameters, undefined, GetUserByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"}]\n}\n\nexport class GetUsersByAccountIdRequest extends RequestGet<GetUsersByAccountIdPathParameters, GetUsersByAccountIdQueryStringParameters, GetUsersByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"users\",\"sdkPartName\":\"users\"}]\n}\n\nexport class CreateCampaignAccountByAccountIdRequest extends RequestPost<SendCampaignInformationByAccountIdPathParameters, undefined, SendCampaignInformationByAccountIdRequestBody, SendCampaignInformationByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"campaignInformation\",\"sdkPartName\":\"campaignInformation\"}]\n}\n\nexport class GetUsersRolesByAccountIdRequest extends RequestGet<GetUsersRolesByAccountIdPathParameters, undefined, GetUsersRolesByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"},{\"routePart\":\"roles\",\"sdkPartName\":\"roles\"}]\n}\n\nexport class UpdateAccountRequest extends RequestPatch<UpdateAccountPathParameters, undefined, UpdateAccountRequestBody, UpdateAccountResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"}]\n}\n\nexport class UpdateEngagePricePlanRequest extends RequestPatch<UpdatePricePlanPathParameters, undefined, UpdatePricePlanRequestBody, UpdatePricePlanResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"engagePricePlan\",\"sdkPartName\":\"engagePricePlan\"}]\n}\n\nexport class AdvanceStripeClockByAccountIdRequest extends RequestPost<StripeClockPathParameters, undefined, StripeClockRequestBody, StripeClockResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"clock\",\"sdkPartName\":\"clock\"}]\n}\n\nexport class RetrieveCampaignStatusByAccountIdRequest extends RequestGet<RetrieveCampaignStatusByAccountIdPathParameters, undefined, RetrieveCampaignStatusByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"campaignInformation\",\"sdkPartName\":\"campaignInformation\"}]\n}\n\nexport class InstallAppToAccountRequest extends RequestPost<InstallAppToAccountPathParameters, undefined, undefined, InstallAppToAccountResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"parm\":\"appId\",\"routePart\":\"apps\",\"sdkPartName\":\"app\"},{\"routePart\":\"install\",\"sdkPartName\":\"install\"}]\n}\n\nexport class UpdateUserByAccountIdRequest extends RequestPatch<UpdateUserByAccountIdPathParameters, undefined, UpdateUserByAccountIdRequestBody, UpdateUserByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"}]\n}\n\nexport class UpdatePricePlanByAccountIdRequest extends RequestPatch<UpdatePricePlanByAccountIdPathParameters, undefined, UpdatePricePlanByAccountIdRequestBody, UpdatePricePlanByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"priceplan\",\"sdkPartName\":\"pricePlan\"}]\n}\n\nexport class UploadQrCodeLogoByAccountRequest extends RequestPost<UploadQrCodeLogoByAccountIdPathParameters, undefined, UploadQrCodeLogoByAccountIdRequestBody, UploadQrCodeLogoByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"routePart\":\"qrcodelogos/upload\",\"sdkPartName\":\"qrcodelogosUpload\"}]\n}\n\nexport class UpdateUsersRolesByAccountIdRequest extends RequestPatch<UpdateUsersRolesByAccountIdPathParameters, undefined, UpdateUsersRolesByAccountIdRequestBody, UpdateUsersRolesByAccountIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"accountId\",\"routePart\":\"accounts\",\"sdkPartName\":\"account\"},{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"},{\"routePart\":\"roles\",\"sdkPartName\":\"roles\"}]\n}\n\nexport class GetUserRolesRequest extends RequestGet<undefined, undefined, GetUserRolesResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"userroles\",\"sdkPartName\":\"userroles\"}]\n}\n\nexport class CreateAccountByUserIdRequest extends RequestPost<CreateAccountByUserIdPathParameters, undefined, CreateAccountByUserIdRequestBody, CreateAccountByUserIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"},{\"routePart\":\"accounts\",\"sdkPartName\":\"accounts\"}]\n}\n\nexport class GetUserRequest extends RequestGet<GetUserPathParameters, undefined, GetUserResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"}]\n}\n\nexport class GetErrorsByUserIdRequest extends RequestGet<GetErrorsByUserIdPathParameters, GetErrorsByUserIdQueryStringParameters, GetErrorsByUserIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"},{\"routePart\":\"errors\",\"sdkPartName\":\"errors\"}]\n}\n\nexport class GetAccountsByUserIdRequest extends RequestGet<GetAccountsByUserIdPathParameters, GetAccountsByUserIdQueryStringParameters, GetAccountsByUserIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"},{\"routePart\":\"accounts\",\"sdkPartName\":\"accounts\"}]\n}\n\nexport class GetInvitationsByUserIdRequest extends RequestGet<GetInvitationsByUserIdPathParameters, GetInvitationsByUserIdQueryStringParameters, GetInvitationsByUserIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"},{\"routePart\":\"invitations\",\"sdkPartName\":\"invitations\"}]\n}\n\nexport class CompleteUserMediaMultipartUploadRequest extends RequestPost<CompleteUserMediaMultipartUploadPathParameters, undefined, CompleteUserMediaMultipartUploadRequestBody, CompleteUserMediaMultipartUploadResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"},{\"routePart\":\"multipart\",\"sdkPartName\":\"multipart\"}]\n}\n\nexport class GetPricePlansRequest extends RequestGet<undefined, undefined, GetPricePlansResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"pricePlans\",\"sdkPartName\":\"pricePlans\"}]\n}\n\nexport class LinkMediaToAssetRequest extends RequestPost<LinkMediaToAssetPathParameters, undefined, undefined, LinkMediaToAssetResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"},{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"}]\n}\n\nexport class LinkMediaToProjectRequest extends RequestPost<LinkMediaToProjectPathParameters, undefined, undefined, LinkMediaToProjectResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"},{\"parm\":\"projectId\",\"routePart\":\"project\",\"sdkPartName\":\"project\"}]\n}\n\nexport class UpdateUserRequest extends RequestPatch<UpdateUserPathParameters, undefined, UpdateUserRequestBody, UpdateUserResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"}]\n}\n\nexport class GetUserSettingsByUserIdRequest extends RequestGet<GetUserSettingsPathParameters, undefined, GetUserSettingsResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"},{\"parm\":\"path\",\"routePart\":\"path\",\"sdkPartName\":\"path\"},{\"routePart\":\"settings\",\"sdkPartName\":\"settings\"}]\n}\n\nexport class GetMediaRequest extends RequestGet<GetUserMediaPathParameters, undefined, GetUserMediaResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"}]\n}\n\nexport class LinkMediaToScanRequest extends RequestPost<LinkMediaToScanPathParameters, undefined, undefined, LinkMediaToScanResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"},{\"parm\":\"scanId\",\"routePart\":\"scans\",\"sdkPartName\":\"scan\"}]\n}\n\nexport class UnlinkMediaToAssetRequest extends RequestDelete<UnlinkMediaToAssetPathParameters, undefined, UnlinkMediaToAssetResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"},{\"parm\":\"assetId\",\"routePart\":\"assets\",\"sdkPartName\":\"asset\"}]\n}\n\nexport class SetUserSettingsByUserIdRequest extends RequestPatch<SetUserSettingsPathParameters, undefined, SetUserSettingsRequestBody, SetUserSettingsResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"userId\",\"routePart\":\"users\",\"sdkPartName\":\"user\"},{\"parm\":\"path\",\"routePart\":\"path\",\"sdkPartName\":\"path\"},{\"routePart\":\"settings\",\"sdkPartName\":\"settings\"}]\n}\n\nexport class UnlinkMediaToScanRequest extends RequestDelete<UnlinkMediaToScanPathParameters, undefined, UnlinkMediaToScanResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"},{\"parm\":\"scanId\",\"routePart\":\"scans\",\"sdkPartName\":\"scan\"}]\n}\n\nexport class UnlinkMediaToProjectRequest extends RequestDelete<UnlinkMediaToProjectPathParameters, undefined, UnlinkMediaToProjectResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"},{\"parm\":\"projectId\",\"routePart\":\"projects\",\"sdkPartName\":\"project\"}]\n}\n\nexport class DeletePrintStickerTemplateRequest extends RequestDelete<DeletePrintStickerTemplatePathParameters, undefined, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"printStickerTemplateId\",\"routePart\":\"printStickerTemplates\",\"sdkPartName\":\"printStickerTemplate\"}]\n}\n\nexport class GetPrintStickerTemplateRequest extends RequestGet<GetPrintStickerTemplatePathParameters, undefined, GetPrintStickerTemplateResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"printStickerTemplateId\",\"routePart\":\"printStickerTemplates\",\"sdkPartName\":\"printStickerTemplate\"}]\n}\n\nexport class DeleteQrCodeStylingTemplateByStylingTemplateIdRequest extends RequestDelete<DeleteStylingTemplateByStylingTemplateIdPathParameters, undefined, DeleteStylingTemplateByStylingTemplateIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"stylingTemplateId\",\"routePart\":\"stylingtemplates\",\"sdkPartName\":\"stylingtemplate\"}]\n}\n\nexport class DeletePrintPageTemplateRequest extends RequestDelete<DeletePrintPageTemplatePathParameters, undefined, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"printPageTemplateId\",\"routePart\":\"printPageTemplates\",\"sdkPartName\":\"printPageTemplate\"}]\n}\n\nexport class GetQrCodeStylingTemplateByStylingTemplateIdRequest extends RequestGet<GetStylingTemplateByStylingTemplateIdPathParameters, undefined, GetStylingTemplateByStylingTemplateIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"stylingTemplateId\",\"routePart\":\"stylingtemplates\",\"sdkPartName\":\"stylingtemplate\"}]\n}\n\nexport class UpdatePrintPageTemplateRequest extends RequestPatch<UpdatePrintPageTemplatePathParameters, undefined, UpdatePrintPageTemplateRequestBody, UpdatePrintPageTemplateResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"printPageTemplateId\",\"routePart\":\"printPageTemplates\",\"sdkPartName\":\"printPageTemplate\"}]\n}\n\nexport class UpdateMediaRequest extends RequestPatch<UpdateUserMediaPathParameters, undefined, UpdateUserMediaRequestBody, UpdateUserMediaResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"}]\n}\n\nexport class UpdateQrCodeStylingTemplateByStylingTemplateIdRequest extends RequestPatch<UpdateStylingTemplateByStylingTemplateIdPathParameters, undefined, UpdateStylingTemplateByStylingTemplateIdRequestBody, UpdateStylingTemplateByStylingTemplateIdResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"stylingTemplateId\",\"routePart\":\"stylingtemplates\",\"sdkPartName\":\"stylingtemplate\"}]\n}\n\nexport class GetPrintPageTemplateRequest extends RequestGet<GetPrintPageTemplatePathParameters, undefined, GetPrintPageTemplateResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"printPageTemplateId\",\"routePart\":\"printPageTemplates\",\"sdkPartName\":\"printPageTemplate\"}]\n}\n\nexport class UpdatePrintStickerTemplateRequest extends RequestPatch<UpdatePrintStickerTemplatePathParameters, undefined, UpdatePrintStickerTemplateRequestBody, UpdatePrintStickerTemplateResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"printStickerTemplateId\",\"routePart\":\"printStickerTemplates\",\"sdkPartName\":\"printStickerTemplate\"}]\n}\n\nexport class DeleteSessionRequest extends RequestDelete<undefined, undefined, DeleteSessionResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"auth/session\",\"sdkPartName\":\"authSession\"}]\n}\n\nexport class CheckSessionRequest extends RequestGet<undefined, undefined, CheckSessionResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"auth/session\",\"sdkPartName\":\"authSession\"}]\n}\n\nexport class GetSessionRequest extends RequestPost<undefined, undefined, GetSessionRequestBody, GetSessionResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"auth/session\",\"sdkPartName\":\"authSession\"}]\n}\n\nexport class GetSessionRefreshRequest extends RequestPost<undefined, undefined, undefined, GetSessionRefreshUserSessionResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"auth/session/refresh\",\"sdkPartName\":\"refreshAuthSession\"}]\n}\n\nexport class CreateUserRequest extends RequestPost<undefined, undefined, CreateUserRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"auth/user\",\"sdkPartName\":\"authUser\"}]\n}\n\nexport class ResendConfirmationRequest extends RequestPost<undefined, undefined, ResendConfirmationRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"auth/user/confirmation\",\"sdkPartName\":\"confirmationAuthUser\"}]\n}\n\nexport class ResetPasswordRequest extends RequestPost<undefined, undefined, ResetPasswordRequestBody, undefined> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"auth/user/reset\",\"sdkPartName\":\"resetAuthUser\"}]\n}\n\nexport class ChangePasswordRequest extends RequestPost<undefined, undefined, ChangePasswordRequestBody, ChangePasswordResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"routePart\":\"auth/user/password\",\"sdkPartName\":\"passwordAuthUser\"}]\n}\n\nexport class DeleteMediaRequest extends RequestDelete<DeleteUserMediaPathParameters, undefined, DeleteUserMediaResponseBody> {\n routeSegments?: RequestRouteSegment[] = [{\"parm\":\"mediaId\",\"routePart\":\"usermedias\",\"sdkPartName\":\"usermedia\"}]\n}\n\n// HANDLER RESOURCE CLASSES\n\nexport class SdkApikeySecretResources extends Resources {\n\n async get(options?: any): Promise<GetApiKeySecretResponseBody> {\n const request = new GetApiKeySecretRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(options?: any): Promise<ResetApiKeySecretResponseBody> {\n const request = new ResetApiKeySecretRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkApikeyResource extends Resource {\n\n secret(): SdkApikeySecretResources {\n return new SdkApikeySecretResources(this.getSession(), this.pathParameters)\n }\n\n async get(options?: any): Promise<GetApiKeyResponseBody> {\n const request = new GetApiKeyRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateApiKeyRequestBody, options?: any): Promise<UpdateApiKeyResponseBody> {\n const request = new UpdateApiKeyRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAppAccountLoadResources extends Resources {\n\n async create(options?: any): Promise<LoadAppResponseBody> {\n const request = new LoadAppRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAppAccountResource extends Resource {\n\n load(): SdkAppAccountLoadResources {\n return new SdkAppAccountLoadResources(this.getSession(), this.pathParameters)\n }\n\n}\n\nexport class SdkAppResource extends Resource {\n\n account(accountId: string): SdkAppAccountResource {\n return new SdkAppAccountResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n async update(requestBody: UpdateAppByAppIdRequestBody, options?: any): Promise<UpdateAppByAppIdResponseBody> {\n const request = new UpdateAppByAppIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(options?: any): Promise<GetAppByAppIdResponseBody> {\n const request = new GetAppByAppIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAppsResources extends Resources {\n\n async get(queryStringParameters: GetAppsQueryStringParameters, options?: any): Promise<GetAppsResponseBody> {\n const request = new GetAppsRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAppsPublishedResources extends Resources {\n\n async get(queryStringParameters: GetPublishedAppsQueryStringParameters, options?: any): Promise<GetPublishedAppsResponseBody> {\n const request = new GetPublishedAppsRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssettypeAssetsResources extends Resources {\n\n async get(queryStringParameters: GetAssetsByAssetTypeQueryStringParameters, options?: any): Promise<GetAssetsByAssetTypeResponseBody> {\n const request = new GetAssetsByAssetTypeRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n async create(requestBody: CreateAssetByAssetTypeRequestBody, options?: any): Promise<CreateAssetByAssetTypeResponseBody> {\n const request = new CreateAssetByAssetTypeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAssettypeLocationResource extends Resource {\n\n async get(options?: any): Promise<GetAssetTypeCountAtLocationResponseBody> {\n const request = new GetAssetTypeCountAtLocationRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateAssetTypeCountAtLocationRequestBody, options?: any): Promise<UpdateAssetTypeCountAtLocationResponseBody> {\n const request = new UpdateAssetTypeCountAtLocationRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAssettypeAssetResource extends Resource {\n\n async create(requestBody: ComposeAssetByAssetTypeRequestBody, options?: any): Promise<ComposeAssetByAssetTypeResponseBody> {\n const request = new ComposeAssetByAssetTypeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAssettypeLocationsResources extends Resources {\n\n async get(queryStringParameters: GetLocationCountsForAssetTypeQueryStringParameters, options?: any): Promise<GetLocationCountsForAssetTypeResponseBody> {\n const request = new GetAssetTypeCountsByLocationRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssettypeResource extends Resource {\n\n assets(): SdkAssettypeAssetsResources {\n return new SdkAssettypeAssetsResources(this.getSession(), this.pathParameters)\n }\n\n location(locationId: string): SdkAssettypeLocationResource {\n return new SdkAssettypeLocationResource(this.getSession(), {...this.pathParameters, locationId})\n }\n\n asset(assetId: string): SdkAssettypeAssetResource {\n return new SdkAssettypeAssetResource(this.getSession(), {...this.pathParameters, assetId})\n }\n\n locations(): SdkAssettypeLocationsResources {\n return new SdkAssettypeLocationsResources(this.getSession(), this.pathParameters)\n }\n\n async delete(options?: any): Promise<DeleteAssetTypeResponseBody> {\n const request = new DeleteAssetTypeRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(queryStringParameters: GetAssetTypeByAssetTypeIdQueryStringParameters, options?: any): Promise<GetAssetTypeByAssetTypeIdResponseBody> {\n const request = new GetAssetTypeByAssetTypeIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n async update(requestBody: UpdateAssetTypeRequestBody, options?: any): Promise<UpdateAssetTypeResponseBody> {\n const request = new UpdateAssetTypeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAssetgraphResource extends Resource {\n\n async get(options?: any): Promise<GetAssetGraphResponseBody> {\n const request = new GetAssetGraphRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateAssetGraphRequestBody, options?: any): Promise<UpdateAssetGraphResponseBody> {\n const request = new UpdateAssetGraphRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async delete(options?: any): Promise<any> {\n const request = new DeleteAssetGraphRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAssetContactsResources extends Resources {\n\n async create(requestBody: CreateContactByAssetIdRequestBody, options?: any): Promise<CreateContactByAssetIdResponseBody> {\n const request = new CreateContactByAssetIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetContactsByAssetIdQueryStringParameters, options?: any): Promise<GetContactsByAssetIdResponseBody> {\n const request = new GetContactsByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssetQrCodesResources extends Resources {\n\n async create(requestBody: CreateQrCodeByAssetIdRequestBody, options?: any): Promise<CreateQrCodeByAssetIdResponseBody> {\n const request = new CreateQrCodeByAssetIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetQrCodesByAssetIdQueryStringParameters, options?: any): Promise<GetQrCodesByAssetIdResponseBody> {\n const request = new GetQrCodesByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssetNeighborsDeleteResources extends Resources {\n\n async create(requestBody: DeleteNeighborsByAssetIdRequestBody, options?: any): Promise<any> {\n const request = new DeleteNeighborsByAssetIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAssetNeighborsResources extends Resources {\n\n async create(requestBody: CreateNeighborsByAssetIdRequestBody, options?: any): Promise<any> {\n const request = new CreateNeighborsByAssetIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetNeighborsByAssetIdQueryStringParameters, options?: any): Promise<GetNeighborsByAssetIdResponseBody> {\n const request = new GetNeighborsByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssetNeighborResource extends Resource {\n\n async get(queryStringParameters: GetNeighborScanCountByAssetIdQueryStringParameters, options?: any): Promise<GetNeighborScanCountByAssetIdResponseBody> {\n const request = new GetNeighborScanCountByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssetHistoryResources extends Resources {\n\n async get(queryStringParameters: GetAssetHistoryByAssetIdQueryStringParameters, options?: any): Promise<GetAssetHistoryByAssetIdResponseBody> {\n const request = new GetAssetHistoryRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssetUrlResource extends Resource {\n\n async get(queryStringParameters: GetExternalNeighborScanCountByAssetIdQueryStringParameters, options?: any): Promise<GetExternalNeighborScanCountByAssetIdResponseBody> {\n const request = new GetExternalNeighborScanCountByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssetScansExportResources extends Resources {\n\n async create(requestBody: GetScanExportByAssetIdRequestBody, options?: any): Promise<GetScanExportByAssetIdResponseBody> {\n const request = new GetScanExportByAssetIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAssetQracodesResources extends Resources {\n\n async create(requestBody: CreateQrCodesByAssetIdRequestBody, options?: any): Promise<CreateQrCodesByAssetIdResponseBody> {\n const request = new CreateQrCodesByAssetIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAssetScansLocationResources extends Resources {\n\n async get(queryStringParameters: GetScanLocationDataByAssetIdQueryStringParameters, options?: any): Promise<GetScanLocationDataByAssetIdResponseBody> {\n const request = new GetScanLocationDataByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssetScansResources extends Resources {\n\n async get(queryStringParameters: GetScansByAssetIdQueryStringParameters, options?: any): Promise<GetScansByAssetIdResponseBody> {\n const request = new GetScansByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssetContactResource extends Resource {\n\n async delete(options?: any): Promise<any> {\n const request = new UnlinkContactToAssetRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async create(requestBody: LinkContactToAssetRequestBody, options?: any): Promise<LinkContactToAssetResponseBody> {\n const request = new LinkContactToAssetRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAssetUsermediasResources extends Resources {\n\n async get(queryStringParameters: GetUserMediasByAssetIdQueryStringParameters, options?: any): Promise<GetUserMediasByAssetIdResponseBody> {\n const request = new GetUserMediasByAssetIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAssetResource extends Resource {\n\n contacts(): SdkAssetContactsResources {\n return new SdkAssetContactsResources(this.getSession(), this.pathParameters)\n }\n\n qrCodes(): SdkAssetQrCodesResources {\n return new SdkAssetQrCodesResources(this.getSession(), this.pathParameters)\n }\n\n neighborsDelete(): SdkAssetNeighborsDeleteResources {\n return new SdkAssetNeighborsDeleteResources(this.getSession(), this.pathParameters)\n }\n\n neighbors(): SdkAssetNeighborsResources {\n return new SdkAssetNeighborsResources(this.getSession(), this.pathParameters)\n }\n\n neighbor(neighborId: string): SdkAssetNeighborResource {\n return new SdkAssetNeighborResource(this.getSession(), {...this.pathParameters, neighborId})\n }\n\n history(): SdkAssetHistoryResources {\n return new SdkAssetHistoryResources(this.getSession(), this.pathParameters)\n }\n\n url(url: string): SdkAssetUrlResource {\n return new SdkAssetUrlResource(this.getSession(), {...this.pathParameters, url})\n }\n\n scansExport(): SdkAssetScansExportResources {\n return new SdkAssetScansExportResources(this.getSession(), this.pathParameters)\n }\n\n qracodes(): SdkAssetQracodesResources {\n return new SdkAssetQracodesResources(this.getSession(), this.pathParameters)\n }\n\n scansLocation(): SdkAssetScansLocationResources {\n return new SdkAssetScansLocationResources(this.getSession(), this.pathParameters)\n }\n\n scans(): SdkAssetScansResources {\n return new SdkAssetScansResources(this.getSession(), this.pathParameters)\n }\n\n contact(contactId: string): SdkAssetContactResource {\n return new SdkAssetContactResource(this.getSession(), {...this.pathParameters, contactId})\n }\n\n usermedias(): SdkAssetUsermediasResources {\n return new SdkAssetUsermediasResources(this.getSession(), this.pathParameters)\n }\n\n async get(queryStringParameters: GetAssetQueryStringParameters, options?: any): Promise<GetAssetResponseBody> {\n const request = new NameRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n async delete(options?: any): Promise<DeleteAssetResponseBody> {\n const request = new DeleteAssetRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateAssetRequestBody, options?: any): Promise<UpdateAssetResponseBody> {\n const request = new UpdateAssetRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkBatchAssetsResources extends Resources {\n\n async get(queryStringParameters: GetAssetsByBatchIdQueryStringParameters, options?: any): Promise<GetAssetsByBatchIdResponseBody> {\n const request = new GetAssetsByBatchIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkBatchResource extends Resource {\n\n assets(): SdkBatchAssetsResources {\n return new SdkBatchAssetsResources(this.getSession(), this.pathParameters)\n }\n\n}\n\nexport class SdkBillingCancelDowngradeResource extends Resource {\n\n async create(options?: any): Promise<CancelDowngradeRequestResponseBody> {\n const request = new CancelDowngradeRequestRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAppsAccountMainResources extends Resources {\n\n async get(options?: any): Promise<GetMainAccountByAppAccountIdResponseBody> {\n const request = new GetMainAccountByAppAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAppsAccountResource extends Resource {\n\n main(): SdkAppsAccountMainResources {\n return new SdkAppsAccountMainResources(this.getSession(), this.pathParameters)\n }\n\n async get(options?: any): Promise<GetAppAccountResponseBody> {\n const request = new GetAppAccountByAppAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkBillingDowngradePlanResource extends Resource {\n\n async create(requestBody: DowngradePlanRequestBody, options?: any): Promise<DowngradePlanResponseBody> {\n const request = new DowngradePlanRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkBillingCancelSubscriptionResource extends Resource {\n\n async create(requestBody: CancelSubscriptionRequestBody, options?: any): Promise<CancelSubscriptionResponseBody> {\n const request = new CancelSubscriptionRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkUpgradePlanBillingPreviewResource extends Resource {\n\n async get(queryStringParameters: ChangeSubscriptionPreviewQueryStringParameters, options?: any): Promise<ChangeSubscriptionPreviewResponseBody> {\n const request = new ChangeSubscriptionPreviewRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkBillingSetupIntentResource extends Resource {\n\n async create(requestBody: CreateSetupIntentRequestBody, options?: any): Promise<CreateSetupIntentResponseBody> {\n const request = new CreateSetupIntentRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkBillingDetailResource extends Resource {\n\n async get(options?: any): Promise<GetBillingDetailsResponseBody> {\n const request = new GetBillingDetailsRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkBillingCurrentPeriodResource extends Resource {\n\n async get(options?: any): Promise<GetCurrentPeriodResponseBody> {\n const request = new GetCurrentPeriodRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkCareAccountsResources extends Resources {\n\n async get(queryStringParameters: GetAllAccountsQueryStringParameters, options?: any): Promise<GetAllAccountsResponseBody> {\n const request = new GetAllAccountsRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkCustomdomainLocatorCollisionsResources extends Resources {\n\n async get(queryStringParameters: CheckCustomLocatorKeyRangeQueryStringParameters, options?: any): Promise<CheckCustomLocatorKeyRangeResponseBody> {\n const request = new CheckCustomLocatorKeyRangeRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkCustomdomainRetryResources extends Resources {\n\n async create(options?: any): Promise<RetryCustomDomainResponseBody> {\n const request = new RetryCustomDomainRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkCustomdomainResource extends Resource {\n\n locatorCollisions(): SdkCustomdomainLocatorCollisionsResources {\n return new SdkCustomdomainLocatorCollisionsResources(this.getSession(), this.pathParameters)\n }\n\n retry(): SdkCustomdomainRetryResources {\n return new SdkCustomdomainRetryResources(this.getSession(), this.pathParameters)\n }\n\n async delete(options?: any): Promise<any> {\n const request = new DeleteCustomDomainRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkContactConsentResources extends Resources {\n\n async delete(queryStringParameters: DeleteConsentByContactIdQueryStringParameters, options?: any): Promise<DeleteConsentByContactIdResponseBody> {\n const request = new DeleteConsentByContactIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n async create(requestBody: CreateConsentByContactIdRequestBody, options?: any): Promise<CreateConsentByContactIdResponseBody> {\n const request = new CreateConsentByContactIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetConsentByContactIdQueryStringParameters, options?: any): Promise<GetConsentByContactIdResponseBody> {\n const request = new GetConsentByContactIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkContactAssetsResources extends Resources {\n\n async get(queryStringParameters: GetAssetsByContactIdQueryStringParameters, options?: any): Promise<GetAssetsByContactIdResponseBody> {\n const request = new GetAssetsByContactIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkContactScansLocationResources extends Resources {\n\n async get(queryStringParameters: GetScanLocationDataByContactIdQueryStringParameters, options?: any): Promise<GetScanLocationDataByContactIdResponseBody> {\n const request = new GetScanLocationDataByContactIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkContactScansResources extends Resources {\n\n async get(options?: any): Promise<GetScansByContactIdResponseBody> {\n const request = new GetScansByContactIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkContactScanResource extends Resource {\n\n async create(requestBody: LinkContactToScanRequestBody, options?: any): Promise<LinkContactToScanResponseBody> {\n const request = new LinkContactToScanRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkContactScansExportResources extends Resources {\n\n async create(requestBody: GetScanExportByContactIdRequestBody, options?: any): Promise<GetScanExportByContactIdResponseBody> {\n const request = new GetScanExportByContactIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkContactExportResources extends Resources {\n\n async create(requestBody: GetContactExportByContactIdRequestBody, options?: any): Promise<GetContactExportByContactIdResponseBody> {\n const request = new GetContactExportByContactIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkContactResource extends Resource {\n\n consent(): SdkContactConsentResources {\n return new SdkContactConsentResources(this.getSession(), this.pathParameters)\n }\n\n assets(): SdkContactAssetsResources {\n return new SdkContactAssetsResources(this.getSession(), this.pathParameters)\n }\n\n scansLocation(): SdkContactScansLocationResources {\n return new SdkContactScansLocationResources(this.getSession(), this.pathParameters)\n }\n\n scans(): SdkContactScansResources {\n return new SdkContactScansResources(this.getSession(), this.pathParameters)\n }\n\n scan(scanId: string): SdkContactScanResource {\n return new SdkContactScanResource(this.getSession(), {...this.pathParameters, scanId})\n }\n\n scansExport(): SdkContactScansExportResources {\n return new SdkContactScansExportResources(this.getSession(), this.pathParameters)\n }\n\n export(): SdkContactExportResources {\n return new SdkContactExportResources(this.getSession(), this.pathParameters)\n }\n\n async delete(options?: any): Promise<DeleteContactResponseBody> {\n const request = new DeleteContactRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateContactRequestBody, options?: any): Promise<UpdateContactResponseBody> {\n const request = new UpdateContactRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(options?: any): Promise<GetContactResponseBody> {\n const request = new GetContactRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkBillingInvoiceResource extends Resource {\n\n async get(queryStringParameters: GetInvoicesQueryStringParameters, options?: any): Promise<GetInvoicesResponseBody> {\n const request = new GetInvoicesRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkBillingUpgradePlanResource extends Resource {\n\n async create(requestBody: UpgradePlanRequestBody, options?: any): Promise<UpgradePlanResponseBody> {\n const request = new ChangeSubscriptionRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkJobResource extends Resource {\n\n async delete(options?: any): Promise<DeleteJobResponseBody> {\n const request = new DeleteJobRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetJobResponseBody> {\n const request = new GetJobRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkInvitationUsersResources extends Resources {\n\n async create(options?: any): Promise<CreateUserByInvitationIdResponseBody> {\n const request = new CreateUserByInvitationIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkInvitationResource extends Resource {\n\n users(): SdkInvitationUsersResources {\n return new SdkInvitationUsersResources(this.getSession(), this.pathParameters)\n }\n\n async get(options?: any): Promise<GetInvitationResponseBody> {\n const request = new GetInvitationRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async delete(options?: any): Promise<DeleteInvitationResponseBody> {\n const request = new DeleteInvitationRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkPrintJobResource extends Resource {\n\n async delete(options?: any): Promise<DeletePrintJobResponseBody> {\n const request = new DeletePrintJobRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(options?: any): Promise<InvokePrintJobByJobIdResponseBody> {\n const request = new InvokePrintJobByJobIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkSupportResources extends Resources {\n\n async create(requestBody: SendSupportEmailRequestBody, options?: any): Promise<any> {\n const request = new SendSupportEmailRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectJobsAssetbatchResources extends Resources {\n\n async create(requestBody: CreateAssetCreationJobByProjectIdRequestBody, options?: any): Promise<CreateAssetCreationJobByProjectIdResponseBody> {\n const request = new CreateAssetCreationJobByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectPresignedurlJobsAssetbatchResources extends Resources {\n\n async create(requestBody: CreateAssetCreationPresignedUrlByProjectIdRequestBody, options?: any): Promise<CreateAssetCreationPresignedUrlByProjectIdResponseBody> {\n const request = new CreateAssetCreationPresignedUrlRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectContactsResources extends Resources {\n\n async create(requestBody: CreateContactByProjectIdRequestBody, options?: any): Promise<CreateContactByProjectIdResponseBody> {\n const request = new CreateContactByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetContactsByProjectIdQueryStringParameters, options?: any): Promise<GetContactsByProjectIdResponseBody> {\n const request = new GetContactsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectAssetsResources extends Resources {\n\n async create(requestBody: CreateAssetByProjectIdRequestBody, options?: any): Promise<CreateAssetByProjectIdResponseBody> {\n const request = new CreateAssetByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetAssetsByProjectIdQueryStringParameters, options?: any): Promise<GetAssetsByProjectIdResponseBody> {\n const request = new GetAssetsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectAssetgraphsResources extends Resources {\n\n async create(requestBody: CreateAssetGraphByProjectIdRequestBody, options?: any): Promise<CreateAssetGraphByProjectIdResponseBody> {\n const request = new CreateAssetGraphByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetAssetGraphsByProjectIdQueryStringParameters, options?: any): Promise<GetAssetGraphsByProjectIdResponseBody> {\n const request = new GetAssetGraphsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectSelfqueueprintResources extends Resources {\n\n async create(requestBody: CreateSelfQueuePrintJobByProjectIdRequestBody, options?: any): Promise<CreateSelfQueuePrintJobByProjectIdResponseBody> {\n const request = new CreateSelfQueuePrintJobByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectQrCodesResources extends Resources {\n\n async create(requestBody: CreateQrCodeByProjectIdRequestBody, options?: any): Promise<CreateQrCodeByProjectIdResponseBody> {\n const request = new CreateQrCodeByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetQrCodesByProjectIdQueryStringParameters, options?: any): Promise<GetQrCodesByProjectIdResponseBody> {\n const request = new GetQrCodesByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectValidationJobsAssetbatchResources extends Resources {\n\n async create(requestBody: CreateAssetBatchValidationJobByProjectIdRequestBody, options?: any): Promise<CreateAssetBatchValidationJobByProjectIdResponseBody> {\n const request = new CreateAssetBatchValidationJobByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectAssetsBatchResources extends Resources {\n\n async create(requestBody: CreateAssetsByProjectIdRequestBody, options?: any): Promise<CreateAssetsByProjectIdResponseBody> {\n const request = new CreateAssetsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectSmsTemplatesResources extends Resources {\n\n async create(requestBody: CreateSmsTemplateByProjectIdRequestBody, options?: any): Promise<CreateSmsTemplateByProjectIdResponseBody> {\n const request = new CreateSmsTemplateByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectContactsBatchResources extends Resources {\n\n async delete(queryStringParameters: DeleteContactsByProjectIdQueryStringParameters, options?: any): Promise<DeleteContactsByProjectIdResponseBody> {\n const request = new DeleteContactsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n async create(requestBody: CreateContactsByProjectIdRequestBody, options?: any): Promise<CreateContactsByProjectIdResponseBody> {\n const request = new CreateContactsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectPrintJobsResources extends Resources {\n\n async create(requestBody: CreateTemplatedPrintJobByProjectIdRequestBody, options?: any): Promise<CreateTemplatedPrintJobByProjectIdResponseBody> {\n const request = new CreateTemplatedPrintJobByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectTemplatedPrintPreviewResources extends Resources {\n\n async create(requestBody: CreateTemplatedPrintPreviewByProjectIdRequestBody, options?: any): Promise<CreateTemplatedPrintPreviewByProjectIdResponseBody> {\n const request = new CreateTemplatedPrintPreviewByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectSmsTemplateResource extends Resource {\n\n async delete(options?: any): Promise<DeleteSmsTemplateResponseBody> {\n const request = new DeleteSmsTemplateByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkProjectAdvancedContactsReportResources extends Resources {\n\n async get(queryStringParameters: GetAdvancedContactReportByProjectIdQueryStringParameters, options?: any): Promise<GetAdvancedContactReportByProjectIdResponseBody> {\n const request = new GetAdvancedContactReportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectAdvancedAssetsReportResources extends Resources {\n\n async get(queryStringParameters: GetAdvancedAssetReportByProjectIdQueryStringParameters, options?: any): Promise<GetAdvancedAssetReportByProjectIdResponseBody> {\n const request = new GetAdvancedAssetReportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectAdvancedScansReportResources extends Resources {\n\n async get(queryStringParameters: GetAdvancedScanReportByProjectIdQueryStringParameters, options?: any): Promise<GetAdvancedScanReportByProjectIdResponseBody> {\n const request = new GetAdvancedScanReportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectAssetsExportResources extends Resources {\n\n async create(requestBody: GetAssetExportByProjectIdRequestBody, options?: any): Promise<GetAssetExportByProjectIdResponseBody> {\n const request = new GetAssetExportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectBasicContactsReportResources extends Resources {\n\n async get(options?: any): Promise<GetBasicContactReportByProjectIdResponseBody> {\n const request = new GetBasicContactReportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkProjectBasicAssetsReportResources extends Resources {\n\n async get(options?: any): Promise<GetBasicAssetReportByProjectIdResponseBody> {\n const request = new GetBasicAssetReportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkProjectContactsExportResources extends Resources {\n\n async create(requestBody: GetContactExportByProjectIdRequestBody, options?: any): Promise<GetContactExportByProjectIdResponseBody> {\n const request = new GetContactExportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectConsentResources extends Resources {\n\n async get(queryStringParameters: GetConsentByProjectIdQueryStringParameters, options?: any): Promise<GetConsentByProjectIdResponseBody> {\n const request = new GetConsentByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectBatchResources extends Resources {\n\n async get(queryStringParameters: GetBatchesByProjectIdQueryStringParameters, options?: any): Promise<GetBatchesByProjectIdResponseBody> {\n const request = new GetBatchesByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectAssetsMostscannedResources extends Resources {\n\n async get(queryStringParameters: GetMostScannedAssetsByProjectIdQueryStringParameters, options?: any): Promise<GetMostScannedAssetsByProjectIdResponseBody> {\n const request = new GetMostScannedAssetsByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectScansDayofweekResources extends Resources {\n\n async get(queryStringParameters: GetScanDayOfWeekByProjectIdQueryStringParameters, options?: any): Promise<GetScanDayOfWeekByProjectIdResponseBody> {\n const request = new GetScanDayOfWeekByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectScansTimelineResources extends Resources {\n\n async get(queryStringParameters: GetScanTimelineByProjectIdQueryStringParameters, options?: any): Promise<GetScanTimelineByProjectIdResponseBody> {\n const request = new GetScanTimelineByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectScansTimeofdayResources extends Resources {\n\n async get(queryStringParameters: GetScanTimeOfDayByProjectIdQueryStringParameters, options?: any): Promise<GetScanTimeOfDayByProjectIdResponseBody> {\n const request = new GetScanTimeOfDayByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectScansExportResources extends Resources {\n\n async create(requestBody: GetScanExportByProjectIdRequestBody, options?: any): Promise<GetScanExportByProjectIdResponseBody> {\n const request = new GetScanExportByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkProjectScansResources extends Resources {\n\n async get(queryStringParameters: GetScansByProjectIdQueryStringParameters, options?: any): Promise<GetScansByProjectIdResponseBody> {\n const request = new GetScansByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectUsermediasResources extends Resources {\n\n async get(queryStringParameters: GetUserMediasByProjectIdQueryStringParameters, options?: any): Promise<GetUserMediasByProjectIdResponseBody> {\n const request = new GetUserMediasByProjectIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkProjectResource extends Resource {\n\n jobsAssetbatch(): SdkProjectJobsAssetbatchResources {\n return new SdkProjectJobsAssetbatchResources(this.getSession(), this.pathParameters)\n }\n\n presignedurlJobsAssetbatch(): SdkProjectPresignedurlJobsAssetbatchResources {\n return new SdkProjectPresignedurlJobsAssetbatchResources(this.getSession(), this.pathParameters)\n }\n\n contacts(): SdkProjectContactsResources {\n return new SdkProjectContactsResources(this.getSession(), this.pathParameters)\n }\n\n assets(): SdkProjectAssetsResources {\n return new SdkProjectAssetsResources(this.getSession(), this.pathParameters)\n }\n\n assetgraphs(): SdkProjectAssetgraphsResources {\n return new SdkProjectAssetgraphsResources(this.getSession(), this.pathParameters)\n }\n\n selfqueueprint(): SdkProjectSelfqueueprintResources {\n return new SdkProjectSelfqueueprintResources(this.getSession(), this.pathParameters)\n }\n\n qrCodes(): SdkProjectQrCodesResources {\n return new SdkProjectQrCodesResources(this.getSession(), this.pathParameters)\n }\n\n validationJobsAssetbatch(): SdkProjectValidationJobsAssetbatchResources {\n return new SdkProjectValidationJobsAssetbatchResources(this.getSession(), this.pathParameters)\n }\n\n assetsBatch(): SdkProjectAssetsBatchResources {\n return new SdkProjectAssetsBatchResources(this.getSession(), this.pathParameters)\n }\n\n smsTemplates(): SdkProjectSmsTemplatesResources {\n return new SdkProjectSmsTemplatesResources(this.getSession(), this.pathParameters)\n }\n\n contactsBatch(): SdkProjectContactsBatchResources {\n return new SdkProjectContactsBatchResources(this.getSession(), this.pathParameters)\n }\n\n printJobs(): SdkProjectPrintJobsResources {\n return new SdkProjectPrintJobsResources(this.getSession(), this.pathParameters)\n }\n\n templatedPrintPreview(): SdkProjectTemplatedPrintPreviewResources {\n return new SdkProjectTemplatedPrintPreviewResources(this.getSession(), this.pathParameters)\n }\n\n smsTemplate(smsTemplateName: string): SdkProjectSmsTemplateResource {\n return new SdkProjectSmsTemplateResource(this.getSession(), {...this.pathParameters, smsTemplateName})\n }\n\n advancedContactsReport(): SdkProjectAdvancedContactsReportResources {\n return new SdkProjectAdvancedContactsReportResources(this.getSession(), this.pathParameters)\n }\n\n advancedAssetsReport(): SdkProjectAdvancedAssetsReportResources {\n return new SdkProjectAdvancedAssetsReportResources(this.getSession(), this.pathParameters)\n }\n\n advancedScansReport(): SdkProjectAdvancedScansReportResources {\n return new SdkProjectAdvancedScansReportResources(this.getSession(), this.pathParameters)\n }\n\n assetsExport(): SdkProjectAssetsExportResources {\n return new SdkProjectAssetsExportResources(this.getSession(), this.pathParameters)\n }\n\n basicContactsReport(): SdkProjectBasicContactsReportResources {\n return new SdkProjectBasicContactsReportResources(this.getSession(), this.pathParameters)\n }\n\n basicAssetsReport(): SdkProjectBasicAssetsReportResources {\n return new SdkProjectBasicAssetsReportResources(this.getSession(), this.pathParameters)\n }\n\n contactsExport(): SdkProjectContactsExportResources {\n return new SdkProjectContactsExportResources(this.getSession(), this.pathParameters)\n }\n\n consent(): SdkProjectConsentResources {\n return new SdkProjectConsentResources(this.getSession(), this.pathParameters)\n }\n\n batch(): SdkProjectBatchResources {\n return new SdkProjectBatchResources(this.getSession(), this.pathParameters)\n }\n\n assetsMostscanned(): SdkProjectAssetsMostscannedResources {\n return new SdkProjectAssetsMostscannedResources(this.getSession(), this.pathParameters)\n }\n\n scansDayofweek(): SdkProjectScansDayofweekResources {\n return new SdkProjectScansDayofweekResources(this.getSession(), this.pathParameters)\n }\n\n scansTimeline(): SdkProjectScansTimelineResources {\n return new SdkProjectScansTimelineResources(this.getSession(), this.pathParameters)\n }\n\n scansTimeofday(): SdkProjectScansTimeofdayResources {\n return new SdkProjectScansTimeofdayResources(this.getSession(), this.pathParameters)\n }\n\n scansExport(): SdkProjectScansExportResources {\n return new SdkProjectScansExportResources(this.getSession(), this.pathParameters)\n }\n\n scans(): SdkProjectScansResources {\n return new SdkProjectScansResources(this.getSession(), this.pathParameters)\n }\n\n usermedias(): SdkProjectUsermediasResources {\n return new SdkProjectUsermediasResources(this.getSession(), this.pathParameters)\n }\n\n async delete(options?: any): Promise<DeleteProjectResponseBody> {\n const request = new DeleteProjectRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetProjectByProjectIdResponseBody> {\n const request = new GetProjectByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateProjectByProjectIdRequestBody, options?: any): Promise<UpdateProjectByProjectIdResponseBody> {\n const request = new UpdateProjectByProjectIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkQrcodelinkResource extends Resource {\n\n async get(options?: any): Promise<GetQrCodeLinkResponseBody> {\n const request = new GetQrCodeLinkRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkQrcodelogoResource extends Resource {\n\n async update(requestBody: UpdateQrCodeLogoByQrCodeLogoIdRequestBody, options?: any): Promise<UpdateQrCodeLogoByQrCodeLogoIdResponseBody> {\n const request = new UpdateQrCodeLogoByQrCodeLogoIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(options?: any): Promise<GetQrCodeLogoByQrCodeLogoIdResponseBody> {\n const request = new GetQrCodeLogoByQrCodeLogoIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkQrCodeLinksResources extends Resources {\n\n async create(requestBody: CreateLinkByQrCodeRequestBody, options?: any): Promise<CreateLinkByQrCodeResponseBody> {\n const request = new CreateLinkByQrCodeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(options?: any): Promise<GetLinksByQrCodeResponseBody> {\n const request = new GetLinksByQrCodeRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkQrCodeLinkResource extends Resource {\n\n async delete(options?: any): Promise<any> {\n const request = new DeleteLinkByQrCodeRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkQrCodeResource extends Resource {\n\n links(): SdkQrCodeLinksResources {\n return new SdkQrCodeLinksResources(this.getSession(), this.pathParameters)\n }\n\n link(link: string): SdkQrCodeLinkResource {\n return new SdkQrCodeLinkResource(this.getSession(), {...this.pathParameters, link})\n }\n\n async get(queryStringParameters: GetQrCodeQueryStringParameters, options?: any): Promise<GetQrCodeResponseBody> {\n const request = new GetQrCodeRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n async delete(options?: any): Promise<DeleteQrCodeResponseBody> {\n const request = new DeleteQrCodeRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateQrCodeRequestBody, options?: any): Promise<UpdateQrCodeResponseBody> {\n const request = new UpdateQrCodeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkFileValidateResources extends Resources {\n\n async create(options?: any): Promise<ValidateFileResponseBody> {\n const request = new ValidateFileRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkFileResource extends Resource {\n\n validate(): SdkFileValidateResources {\n return new SdkFileValidateResources(this.getSession(), this.pathParameters)\n }\n\n async get(options?: any): Promise<GetFileResponseBody> {\n const request = new GetFileRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkScanContactsResources extends Resources {\n\n async create(requestBody: CreateContactByScanIdRequestBody, options?: any): Promise<CreateContactByScanIdResponseBody> {\n const request = new CreateContactByScanIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkScanCustomAttributeResources extends Resources {\n\n async update(requestBody: UpdateScanCustomAttributeRequestBody, options?: any): Promise<UpdateScanCustomAttributeResponseBody> {\n const request = new UpdateScanCustomAttributeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkScanResource extends Resource {\n\n contacts(): SdkScanContactsResources {\n return new SdkScanContactsResources(this.getSession(), this.pathParameters)\n }\n\n customAttribute(): SdkScanCustomAttributeResources {\n return new SdkScanCustomAttributeResources(this.getSession(), this.pathParameters)\n }\n\n async update(requestBody: SaveGeolocationByScanIdRequestBody, options?: any): Promise<any> {\n const request = new SaveGeolocationByScanIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetScanQueryStringParameters, options?: any): Promise<GetScanResponseBody> {\n const request = new GetScanRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkLocationAssetsResources extends Resources {\n\n async update(requestBody: BatchUpdateAssetLocationsRequestBody, options?: any): Promise<BatchUpdateAssetLocationsResponseBody> {\n const request = new UpdateAssetsLocationsRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetAssetsByLocationQueryStringParameters, options?: any): Promise<GetAssetsByLocationResponseBody> {\n const request = new GetAssetsByLocationIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkLocationResource extends Resource {\n\n assets(): SdkLocationAssetsResources {\n return new SdkLocationAssetsResources(this.getSession(), this.pathParameters)\n }\n\n async delete(queryStringParameters: DeleteLocationQueryStringParameters, options?: any): Promise<DeleteLocationResponseBody> {\n const request = new DeleteLocationRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n async update(requestBody: UpdateLocationRequestBody, options?: any): Promise<UpdateLocationResponseBody> {\n const request = new UpdateLocationRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountApikeysResources extends Resources {\n\n async create(requestBody: CreateApiKeyByAccountIdRequestBody, options?: any): Promise<CreateApiKeyByAccountIdResponseBody> {\n const request = new CreateApiKeyByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetApiKeysByAccountIdQueryStringParameters, options?: any): Promise<GetApiKeysByAccountIdResponseBody> {\n const request = new GetApiKeysByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountUserConfirmResources extends Resources {\n\n async get(options?: any): Promise<CheckAccountAccessResponseBody> {\n const request = new GetAccountAccessDataRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAccountUserRolesResources extends Resources {\n\n async get(options?: any): Promise<GetUsersRolesByAccountIdResponseBody> {\n const request = new GetUsersRolesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateUsersRolesByAccountIdRequestBody, options?: any): Promise<UpdateUsersRolesByAccountIdResponseBody> {\n const request = new UpdateUsersRolesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountUserResource extends Resource {\n\n confirm(): SdkAccountUserConfirmResources {\n return new SdkAccountUserConfirmResources(this.getSession(), this.pathParameters)\n }\n\n roles(): SdkAccountUserRolesResources {\n return new SdkAccountUserRolesResources(this.getSession(), this.pathParameters)\n }\n\n async delete(options?: any): Promise<any> {\n const request = new DeleteUserByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetUserByAccountIdResponseBody> {\n const request = new GetUserByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateUserByAccountIdRequestBody, options?: any): Promise<UpdateUserByAccountIdResponseBody> {\n const request = new UpdateUserByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountAssettypesResources extends Resources {\n\n async create(requestBody: CreateAssetTypeByAccountIdRequestBody, options?: any): Promise<CreateAssetTypeByAccountIdResponseBody> {\n const request = new CreateAssetTypeByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetAssetTypesByAccountIdQueryStringParameters, options?: any): Promise<GetAssetTypesByAccountIdResponseBody> {\n const request = new GetAssetTypesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountAppsResources extends Resources {\n\n async create(requestBody: CreateAppByAccountIdRequestBody, options?: any): Promise<CreateAppByAccountIdResponseBody> {\n const request = new CreateAppRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetInstalledAppsByAccountIdQueryStringParameters, options?: any): Promise<GetInstalledAppsByAccountIdResponseBody> {\n const request = new GetInstalledAppsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountUrlSafetiesResources extends Resources {\n\n async create(requestBody: CheckUrlSafetyByAccountIdRequestBody, options?: any): Promise<CheckUrlSafetyByAccountIdResponseBody> {\n const request = new CheckUrlSafetyByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountLocationsResources extends Resources {\n\n async create(requestBody: CreateLocationByAccountIdRequestBody, options?: any): Promise<CreateLocationByAccountIdResponseBody> {\n const request = new CreateLocationByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetLocationsByAccountIdQueryStringParameters, options?: any): Promise<GetLocationsByAccountIdResponseBody> {\n const request = new GetLocationsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountPrintPageTemplatesResources extends Resources {\n\n async create(requestBody: CreatePrintPageTemplateByAccountIdRequestBody, options?: any): Promise<CreatePrintPageTemplateByAccountIdResponseBody> {\n const request = new CreatePrintPageTemplateByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetPrintPageTemplatesByAccountIdQueryStringParameters, options?: any): Promise<GetPrintPageTemplatesByAccountIdResponseBody> {\n const request = new GetPrintPageTemplatesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountImageUploadResources extends Resources {\n\n async create(requestBody: CreateImageUploadPresignedRequestBody, options?: any): Promise<CreateImageUploadPresignedResponseBody> {\n const request = new CreateImageUploadPresignedUrlRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountInvitationsResources extends Resources {\n\n async create(requestBody: CreateInvitationByAccountIdRequestBody, options?: any): Promise<CreateInvitationByAccountIdResponseBody> {\n const request = new CreateInvitationByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountQrcodelogosResources extends Resources {\n\n async create(requestBody: CreateQrCodeLogoByAccountIdRequestBody, options?: any): Promise<CreateQrCodeLogoByAccountIdResponseBody> {\n const request = new CreateQrCodeLogoByAccountRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetQrCodeLogosByAccountIdQueryStringParameters, options?: any): Promise<GetQrCodeLogosByAccountIdResponseBody> {\n const request = new GetQrCodeLogosByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountInvitationsBatchResources extends Resources {\n\n async create(requestBody: CreateInvitationsByAccountIdRequestBody, options?: any): Promise<CreateInvitationsByAccountIdResponseBody> {\n const request = new CreateInvitationsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountPrintStickerTemplatesResources extends Resources {\n\n async create(requestBody: CreatePrintStickerTemplateByAccountIdRequestBody, options?: any): Promise<CreatePrintStickerTemplateByAccountIdResponseBody> {\n const request = new CreatePrintStickerTemplateByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetPrintStickerTemplatesByAccountIdQueryStringParameters, options?: any): Promise<GetPrintStickerTemplatesByAccountIdResponseBody> {\n const request = new GetPrintStickerTemplatesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountProjectsResources extends Resources {\n\n async create(requestBody: CreateProjectByAccountIdRequestBody, options?: any): Promise<CreateProjectByAccountIdResponseBody> {\n const request = new CreateProjectByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetProjectsByAccountIdQueryStringParameters, options?: any): Promise<GetProjectsByAccountIdResponseBody> {\n const request = new GetProjectsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountStylingtemplatesResources extends Resources {\n\n async create(requestBody: CreateQrCodeStylingTemplateByAccountIdRequestBody, options?: any): Promise<CreateQrCodeStylingTemplateByAccountIdResponseBody> {\n const request = new CreateQrCodeStylingTemplateByAccountRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetQrCodeStylingTemplatesByAccountIdQueryStringParameters, options?: any): Promise<GetQrCodeStylingTemplatesByAccountIdResponseBody> {\n const request = new GetQrCodeStylingTemplatesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountZendeskTicketResources extends Resources {\n\n async create(requestBody: CreateTicketByAccountIdRequestBody, options?: any): Promise<any> {\n const request = new CreateTicketByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountUsermediasPresignedurlResources extends Resources {\n\n async create(requestBody: CreateUserMediaPresignedUrlByAccountIdRequestBody, options?: any): Promise<CreateUserMediaPresignedUrlByAccountIdResponseBody> {\n const request = new CreateUserMediaPresignedUrlByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountContactsBatchResources extends Resources {\n\n async delete(queryStringParameters: DeleteContactsByAccountIdQueryStringParameters, options?: any): Promise<DeleteContactsByAccountIdResponseBody> {\n const request = new DeleteContactsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountCustomDomainResource extends Resource {\n\n async get(options?: any): Promise<GetAccountDomainResponseBody> {\n const request = new GetCustomDomainRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAccountOwnerAppsResources extends Resources {\n\n async get(queryStringParameters: GetAllAppsByAccountIdQueryStringParameters, options?: any): Promise<GetAllAppsByAccountIdResponseBody> {\n const request = new GetAllAppsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountAdvancedContactsReportResources extends Resources {\n\n async get(queryStringParameters: GetAdvancedContactReportByAccountIdQueryStringParameters, options?: any): Promise<GetAdvancedContactReportByAccountIdResponseBody> {\n const request = new GetAdvancedContactReportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountAdvancedScansReportResources extends Resources {\n\n async get(queryStringParameters: GetAdvancedScanReportByAccountIdQueryStringParameters, options?: any): Promise<GetAdvancedScanReportByAccountIdResponseBody> {\n const request = new GetAdvancedScanReportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountAssetgraphsResources extends Resources {\n\n async get(queryStringParameters: GetAssetGraphsByAccountIdQueryStringParameters, options?: any): Promise<GetAssetGraphsByAccountIdResponseBody> {\n const request = new GetAssetGraphsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountUsermediasPresignedurlmultipartResources extends Resources {\n\n async create(requestBody: CreateUserMediaMultipartPresignedUrlByAccountIdRequestBody, options?: any): Promise<CreateUserMediaMultipartPresignedUrlByAccountIdResponseBody> {\n const request = new CreateUserMediaMultipartPresignedUrlByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountAssetsExportResources extends Resources {\n\n async create(requestBody: GetAssetExportByAccountIdRequestBody, options?: any): Promise<GetAssetExportByAccountIdResponseBody> {\n const request = new GetAssetExportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountAdvancedAssetsReportResources extends Resources {\n\n async get(queryStringParameters: GetAdvancedAssetReportByAccountIdQueryStringParameters, options?: any): Promise<GetAdvancedAssetReportByAccountIdResponseBody> {\n const request = new GetAdvancedAssetReportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountBasicAssetsReportResources extends Resources {\n\n async get(options?: any): Promise<GetBasicAssetReportByAccountIdResponseBody> {\n const request = new GetBasicAssetReportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAccountAssetsScansResources extends Resources {\n\n async create(queryStringParameters: GetAssetsScanCountByAccountIdQueryStringParameters, requestBody: GetAssetsScanCountByAccountIdRequestBody, options?: any): Promise<GetAssetsScanCountByAccountIdResponseBody> {\n const request = new GetAssetsScanCountByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, requestBody, options)\n }\n\n}\n\nexport class SdkAccountBasicContactsReportResources extends Resources {\n\n async get(options?: any): Promise<GetBasicContactReportByAccountIdResponseBody> {\n const request = new GetBasicContactReportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAccountConsentResources extends Resources {\n\n async get(queryStringParameters: GetConsentByAccountIdQueryStringParameters, options?: any): Promise<GetConsentByAccountIdResponseBody> {\n const request = new GetConsentByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountCustomattributesResources extends Resources {\n\n async create(requestBody: CreateQueryableCustomAttributeByAccountIdRequestBody, options?: any): Promise<CreateQueryableCustomAttributeByAccountIdResponseBody> {\n const request = new CreateQueryableCustomAttributeRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetQueryableCustomAttributesByAccountIdQueryStringParameters, options?: any): Promise<GetQueryableCustomAttributesByAccountIdResponseBody> {\n const request = new GetQueryableCustomAttributeRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountContactsExportResources extends Resources {\n\n async create(requestBody: GetContactExportByAccountIdRequestBody, options?: any): Promise<GetContactExportByAccountIdResponseBody> {\n const request = new GetContactExportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountBatchResources extends Resources {\n\n async get(queryStringParameters: GetBatchesByAccountIdQueryStringParameters, options?: any): Promise<GetBatchesByAccountIdResponseBody> {\n const request = new GetBatchesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountCustomDomainsResources extends Resources {\n\n async get(queryStringParameters: GetDomainsByAccountIdQueryStringParameters, options?: any): Promise<GetDomainsByAccountIdResponseBody> {\n const request = new GetDomainsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountContactsResources extends Resources {\n\n async get(queryStringParameters: GetContactsByAccountIdQueryStringParameters, options?: any): Promise<GetContactsByAccountIdResponseBody> {\n const request = new GetContactsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountJobsResources extends Resources {\n\n async get(queryStringParameters: GetJobsByAccountIdQueryStringParameters, options?: any): Promise<GetJobsByAccountIdResponseBody> {\n const request = new GetJobsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountPricePlanResources extends Resources {\n\n async get(options?: any): Promise<GetPricePlanByAccountIdResponseBody> {\n const request = new GetPricePlanByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdatePricePlanByAccountIdRequestBody, options?: any): Promise<UpdatePricePlanByAccountIdResponseBody> {\n const request = new UpdatePricePlanByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountPrintJobsResources extends Resources {\n\n async get(queryStringParameters: GetPrintJobsByAccountIdQueryStringParameters, options?: any): Promise<GetPrintJobsByAccountIdResponseBody> {\n const request = new GetPrintJobsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountAssetsResources extends Resources {\n\n async get(queryStringParameters: GetAssetsByAccountIdQueryStringParameters, options?: any): Promise<GetAssetsByAccountIdResponseBody> {\n const request = new GetAssetsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountPluginsResources extends Resources {\n\n async get(options?: any): Promise<GetPluginsByAccountIdResponseBody> {\n const request = new GetPluginsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAccountAssetsMostscannedResources extends Resources {\n\n async get(queryStringParameters: GetMostScannedAssetsByAccountIdQueryStringParameters, options?: any): Promise<GetMostScannedAssetsByAccountIdResponseBody> {\n const request = new GetMostScannedAssetsByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountScansTimeofdayResources extends Resources {\n\n async get(queryStringParameters: GetScanTimeOfDayByAccountIdQueryStringParameters, options?: any): Promise<GetScanTimeOfDayByAccountIdResponseBody> {\n const request = new GetScanTimeOfDayByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountProjectsExportResources extends Resources {\n\n async create(requestBody: GetProjectExportByAccountIdRequestBody, options?: any): Promise<GetProjectExportByAccountIdResponseBody> {\n const request = new GetProjectExportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountScansTimelineResources extends Resources {\n\n async get(queryStringParameters: GetScanTimelineByAccountIdQueryStringParameters, options?: any): Promise<GetScanTimelineByAccountIdResponseBody> {\n const request = new GetScanTimelineByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountScansExportResources extends Resources {\n\n async create(requestBody: GetScanExportByAccountIdRequestBody, options?: any): Promise<GetScanExportByAccountIdResponseBody> {\n const request = new GetScanExportByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountScansDayofweekResources extends Resources {\n\n async get(queryStringParameters: GetScanDayOfWeekByAccountIdQueryStringParameters, options?: any): Promise<GetScanDayOfWeekByAccountIdResponseBody> {\n const request = new GetScanDayOfWeekByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountQrCodesResources extends Resources {\n\n async get(queryStringParameters: GetQrCodesByAccountIdQueryStringParameters, options?: any): Promise<GetQrCodesByAccountIdResponseBody> {\n const request = new GetQrCodesByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountScansResources extends Resources {\n\n async get(queryStringParameters: GetScansByAccountIdQueryStringParameters, options?: any): Promise<GetScansByAccountIdResponseBody> {\n const request = new GetScansByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountUsermediasResources extends Resources {\n\n async get(queryStringParameters: GetUserMediasByAccountIdQueryStringParameters, options?: any): Promise<GetUserMediasByAccountIdResponseBody> {\n const request = new GetUserMediasByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountUsersResources extends Resources {\n\n async get(queryStringParameters: GetUsersByAccountIdQueryStringParameters, options?: any): Promise<GetUsersByAccountIdResponseBody> {\n const request = new GetUsersByAccountIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkAccountCampaignInformationResources extends Resources {\n\n async create(requestBody: SendCampaignInformationByAccountIdRequestBody, options?: any): Promise<SendCampaignInformationByAccountIdResponseBody> {\n const request = new CreateCampaignAccountByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(options?: any): Promise<RetrieveCampaignStatusByAccountIdResponseBody> {\n const request = new RetrieveCampaignStatusByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAccountEngagePricePlanResources extends Resources {\n\n async update(requestBody: UpdatePricePlanRequestBody, options?: any): Promise<UpdatePricePlanResponseBody> {\n const request = new UpdateEngagePricePlanRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountClockResources extends Resources {\n\n async create(requestBody: StripeClockRequestBody, options?: any): Promise<StripeClockResponseBody> {\n const request = new AdvanceStripeClockByAccountIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountAppInstallResources extends Resources {\n\n async create(options?: any): Promise<InstallAppToAccountResponseBody> {\n const request = new InstallAppToAccountRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAccountAppResource extends Resource {\n\n install(): SdkAccountAppInstallResources {\n return new SdkAccountAppInstallResources(this.getSession(), this.pathParameters)\n }\n\n}\n\nexport class SdkAccountQrcodelogosUploadResources extends Resources {\n\n async create(requestBody: UploadQrCodeLogoByAccountIdRequestBody, options?: any): Promise<UploadQrCodeLogoByAccountIdResponseBody> {\n const request = new UploadQrCodeLogoByAccountRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkAccountResource extends Resource {\n\n apikeys(): SdkAccountApikeysResources {\n return new SdkAccountApikeysResources(this.getSession(), this.pathParameters)\n }\n\n user(userId: string): SdkAccountUserResource {\n return new SdkAccountUserResource(this.getSession(), {...this.pathParameters, userId})\n }\n\n assettypes(): SdkAccountAssettypesResources {\n return new SdkAccountAssettypesResources(this.getSession(), this.pathParameters)\n }\n\n apps(): SdkAccountAppsResources {\n return new SdkAccountAppsResources(this.getSession(), this.pathParameters)\n }\n\n urlSafeties(): SdkAccountUrlSafetiesResources {\n return new SdkAccountUrlSafetiesResources(this.getSession(), this.pathParameters)\n }\n\n locations(): SdkAccountLocationsResources {\n return new SdkAccountLocationsResources(this.getSession(), this.pathParameters)\n }\n\n printPageTemplates(): SdkAccountPrintPageTemplatesResources {\n return new SdkAccountPrintPageTemplatesResources(this.getSession(), this.pathParameters)\n }\n\n imageUpload(): SdkAccountImageUploadResources {\n return new SdkAccountImageUploadResources(this.getSession(), this.pathParameters)\n }\n\n invitations(): SdkAccountInvitationsResources {\n return new SdkAccountInvitationsResources(this.getSession(), this.pathParameters)\n }\n\n qrcodelogos(): SdkAccountQrcodelogosResources {\n return new SdkAccountQrcodelogosResources(this.getSession(), this.pathParameters)\n }\n\n invitationsBatch(): SdkAccountInvitationsBatchResources {\n return new SdkAccountInvitationsBatchResources(this.getSession(), this.pathParameters)\n }\n\n printStickerTemplates(): SdkAccountPrintStickerTemplatesResources {\n return new SdkAccountPrintStickerTemplatesResources(this.getSession(), this.pathParameters)\n }\n\n projects(): SdkAccountProjectsResources {\n return new SdkAccountProjectsResources(this.getSession(), this.pathParameters)\n }\n\n stylingtemplates(): SdkAccountStylingtemplatesResources {\n return new SdkAccountStylingtemplatesResources(this.getSession(), this.pathParameters)\n }\n\n zendeskTicket(): SdkAccountZendeskTicketResources {\n return new SdkAccountZendeskTicketResources(this.getSession(), this.pathParameters)\n }\n\n usermediasPresignedurl(): SdkAccountUsermediasPresignedurlResources {\n return new SdkAccountUsermediasPresignedurlResources(this.getSession(), this.pathParameters)\n }\n\n contactsBatch(): SdkAccountContactsBatchResources {\n return new SdkAccountContactsBatchResources(this.getSession(), this.pathParameters)\n }\n\n customDomain(customDomain: string): SdkAccountCustomDomainResource {\n return new SdkAccountCustomDomainResource(this.getSession(), {...this.pathParameters, customDomain})\n }\n\n ownerApps(): SdkAccountOwnerAppsResources {\n return new SdkAccountOwnerAppsResources(this.getSession(), this.pathParameters)\n }\n\n advancedContactsReport(): SdkAccountAdvancedContactsReportResources {\n return new SdkAccountAdvancedContactsReportResources(this.getSession(), this.pathParameters)\n }\n\n advancedScansReport(): SdkAccountAdvancedScansReportResources {\n return new SdkAccountAdvancedScansReportResources(this.getSession(), this.pathParameters)\n }\n\n assetgraphs(): SdkAccountAssetgraphsResources {\n return new SdkAccountAssetgraphsResources(this.getSession(), this.pathParameters)\n }\n\n usermediasPresignedurlmultipart(): SdkAccountUsermediasPresignedurlmultipartResources {\n return new SdkAccountUsermediasPresignedurlmultipartResources(this.getSession(), this.pathParameters)\n }\n\n assetsExport(): SdkAccountAssetsExportResources {\n return new SdkAccountAssetsExportResources(this.getSession(), this.pathParameters)\n }\n\n advancedAssetsReport(): SdkAccountAdvancedAssetsReportResources {\n return new SdkAccountAdvancedAssetsReportResources(this.getSession(), this.pathParameters)\n }\n\n basicAssetsReport(): SdkAccountBasicAssetsReportResources {\n return new SdkAccountBasicAssetsReportResources(this.getSession(), this.pathParameters)\n }\n\n assetsScans(): SdkAccountAssetsScansResources {\n return new SdkAccountAssetsScansResources(this.getSession(), this.pathParameters)\n }\n\n basicContactsReport(): SdkAccountBasicContactsReportResources {\n return new SdkAccountBasicContactsReportResources(this.getSession(), this.pathParameters)\n }\n\n consent(): SdkAccountConsentResources {\n return new SdkAccountConsentResources(this.getSession(), this.pathParameters)\n }\n\n customattributes(): SdkAccountCustomattributesResources {\n return new SdkAccountCustomattributesResources(this.getSession(), this.pathParameters)\n }\n\n contactsExport(): SdkAccountContactsExportResources {\n return new SdkAccountContactsExportResources(this.getSession(), this.pathParameters)\n }\n\n batch(): SdkAccountBatchResources {\n return new SdkAccountBatchResources(this.getSession(), this.pathParameters)\n }\n\n customDomains(): SdkAccountCustomDomainsResources {\n return new SdkAccountCustomDomainsResources(this.getSession(), this.pathParameters)\n }\n\n contacts(): SdkAccountContactsResources {\n return new SdkAccountContactsResources(this.getSession(), this.pathParameters)\n }\n\n jobs(): SdkAccountJobsResources {\n return new SdkAccountJobsResources(this.getSession(), this.pathParameters)\n }\n\n pricePlan(): SdkAccountPricePlanResources {\n return new SdkAccountPricePlanResources(this.getSession(), this.pathParameters)\n }\n\n printJobs(): SdkAccountPrintJobsResources {\n return new SdkAccountPrintJobsResources(this.getSession(), this.pathParameters)\n }\n\n assets(): SdkAccountAssetsResources {\n return new SdkAccountAssetsResources(this.getSession(), this.pathParameters)\n }\n\n plugins(): SdkAccountPluginsResources {\n return new SdkAccountPluginsResources(this.getSession(), this.pathParameters)\n }\n\n assetsMostscanned(): SdkAccountAssetsMostscannedResources {\n return new SdkAccountAssetsMostscannedResources(this.getSession(), this.pathParameters)\n }\n\n scansTimeofday(): SdkAccountScansTimeofdayResources {\n return new SdkAccountScansTimeofdayResources(this.getSession(), this.pathParameters)\n }\n\n projectsExport(): SdkAccountProjectsExportResources {\n return new SdkAccountProjectsExportResources(this.getSession(), this.pathParameters)\n }\n\n scansTimeline(): SdkAccountScansTimelineResources {\n return new SdkAccountScansTimelineResources(this.getSession(), this.pathParameters)\n }\n\n scansExport(): SdkAccountScansExportResources {\n return new SdkAccountScansExportResources(this.getSession(), this.pathParameters)\n }\n\n scansDayofweek(): SdkAccountScansDayofweekResources {\n return new SdkAccountScansDayofweekResources(this.getSession(), this.pathParameters)\n }\n\n qrCodes(): SdkAccountQrCodesResources {\n return new SdkAccountQrCodesResources(this.getSession(), this.pathParameters)\n }\n\n scans(): SdkAccountScansResources {\n return new SdkAccountScansResources(this.getSession(), this.pathParameters)\n }\n\n usermedias(): SdkAccountUsermediasResources {\n return new SdkAccountUsermediasResources(this.getSession(), this.pathParameters)\n }\n\n users(): SdkAccountUsersResources {\n return new SdkAccountUsersResources(this.getSession(), this.pathParameters)\n }\n\n campaignInformation(): SdkAccountCampaignInformationResources {\n return new SdkAccountCampaignInformationResources(this.getSession(), this.pathParameters)\n }\n\n engagePricePlan(): SdkAccountEngagePricePlanResources {\n return new SdkAccountEngagePricePlanResources(this.getSession(), this.pathParameters)\n }\n\n clock(): SdkAccountClockResources {\n return new SdkAccountClockResources(this.getSession(), this.pathParameters)\n }\n\n app(appId: string): SdkAccountAppResource {\n return new SdkAccountAppResource(this.getSession(), {...this.pathParameters, appId})\n }\n\n qrcodelogosUpload(): SdkAccountQrcodelogosUploadResources {\n return new SdkAccountQrcodelogosUploadResources(this.getSession(), this.pathParameters)\n }\n\n async get(options?: any): Promise<GetAccountResponseBody> {\n const request = new GetAccountRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateAccountRequestBody, options?: any): Promise<UpdateAccountResponseBody> {\n const request = new UpdateAccountRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkUserrolesResources extends Resources {\n\n async get(options?: any): Promise<GetUserRolesResponseBody> {\n const request = new GetUserRolesRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkUserAccountsResources extends Resources {\n\n async create(requestBody: CreateAccountByUserIdRequestBody, options?: any): Promise<CreateAccountByUserIdResponseBody> {\n const request = new CreateAccountByUserIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(queryStringParameters: GetAccountsByUserIdQueryStringParameters, options?: any): Promise<GetAccountsByUserIdResponseBody> {\n const request = new GetAccountsByUserIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkUserErrorsResources extends Resources {\n\n async get(queryStringParameters: GetErrorsByUserIdQueryStringParameters, options?: any): Promise<GetErrorsByUserIdResponseBody> {\n const request = new GetErrorsByUserIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkUserInvitationsResources extends Resources {\n\n async get(queryStringParameters: GetInvitationsByUserIdQueryStringParameters, options?: any): Promise<GetInvitationsByUserIdResponseBody> {\n const request = new GetInvitationsByUserIdRequest(this.session)\n return request.go(this.pathParameters, queryStringParameters, options)\n }\n\n}\n\nexport class SdkUserPathSettingsResources extends Resources {\n\n async get(options?: any): Promise<GetUserSettingsResponseBody> {\n const request = new GetUserSettingsByUserIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: SetUserSettingsRequestBody, options?: any): Promise<SetUserSettingsResponseBody> {\n const request = new SetUserSettingsByUserIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkUserPathResource extends Resource {\n\n settings(): SdkUserPathSettingsResources {\n return new SdkUserPathSettingsResources(this.getSession(), this.pathParameters)\n }\n\n}\n\nexport class SdkUserResource extends Resource {\n\n accounts(): SdkUserAccountsResources {\n return new SdkUserAccountsResources(this.getSession(), this.pathParameters)\n }\n\n errors(): SdkUserErrorsResources {\n return new SdkUserErrorsResources(this.getSession(), this.pathParameters)\n }\n\n invitations(): SdkUserInvitationsResources {\n return new SdkUserInvitationsResources(this.getSession(), this.pathParameters)\n }\n\n path(path: string): SdkUserPathResource {\n return new SdkUserPathResource(this.getSession(), {...this.pathParameters, path})\n }\n\n async get(options?: any): Promise<GetUserResponseBody> {\n const request = new GetUserRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateUserRequestBody, options?: any): Promise<UpdateUserResponseBody> {\n const request = new UpdateUserRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkUsermediaMultipartResources extends Resources {\n\n async create(requestBody: CompleteUserMediaMultipartUploadRequestBody, options?: any): Promise<CompleteUserMediaMultipartUploadResponseBody> {\n const request = new CompleteUserMediaMultipartUploadRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkUsermediaAssetResource extends Resource {\n\n async create(options?: any): Promise<LinkMediaToAssetResponseBody> {\n const request = new LinkMediaToAssetRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async delete(options?: any): Promise<UnlinkMediaToAssetResponseBody> {\n const request = new UnlinkMediaToAssetRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkUsermediaProjectResource extends Resource {\n\n async create(options?: any): Promise<LinkMediaToProjectResponseBody> {\n const request = new LinkMediaToProjectRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async delete(options?: any): Promise<UnlinkMediaToProjectResponseBody> {\n const request = new UnlinkMediaToProjectRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkUsermediaScanResource extends Resource {\n\n async create(options?: any): Promise<LinkMediaToScanResponseBody> {\n const request = new LinkMediaToScanRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async delete(options?: any): Promise<UnlinkMediaToScanResponseBody> {\n const request = new UnlinkMediaToScanRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkUsermediaResource extends Resource {\n\n multipart(): SdkUsermediaMultipartResources {\n return new SdkUsermediaMultipartResources(this.getSession(), this.pathParameters)\n }\n\n asset(assetId: string): SdkUsermediaAssetResource {\n return new SdkUsermediaAssetResource(this.getSession(), {...this.pathParameters, assetId})\n }\n\n project(projectId: string): SdkUsermediaProjectResource {\n return new SdkUsermediaProjectResource(this.getSession(), {...this.pathParameters, projectId})\n }\n\n scan(scanId: string): SdkUsermediaScanResource {\n return new SdkUsermediaScanResource(this.getSession(), {...this.pathParameters, scanId})\n }\n\n async get(options?: any): Promise<GetUserMediaResponseBody> {\n const request = new GetMediaRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateUserMediaRequestBody, options?: any): Promise<UpdateUserMediaResponseBody> {\n const request = new UpdateMediaRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async delete(options?: any): Promise<DeleteUserMediaResponseBody> {\n const request = new DeleteMediaRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkPricePlansResources extends Resources {\n\n async get(options?: any): Promise<GetPricePlansResponseBody> {\n const request = new GetPricePlansRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkPrintStickerTemplateResource extends Resource {\n\n async delete(options?: any): Promise<any> {\n const request = new DeletePrintStickerTemplateRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetPrintStickerTemplateResponseBody> {\n const request = new GetPrintStickerTemplateRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdatePrintStickerTemplateRequestBody, options?: any): Promise<UpdatePrintStickerTemplateResponseBody> {\n const request = new UpdatePrintStickerTemplateRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkStylingtemplateResource extends Resource {\n\n async delete(options?: any): Promise<DeleteStylingTemplateByStylingTemplateIdResponseBody> {\n const request = new DeleteQrCodeStylingTemplateByStylingTemplateIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<GetStylingTemplateByStylingTemplateIdResponseBody> {\n const request = new GetQrCodeStylingTemplateByStylingTemplateIdRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdateStylingTemplateByStylingTemplateIdRequestBody, options?: any): Promise<UpdateStylingTemplateByStylingTemplateIdResponseBody> {\n const request = new UpdateQrCodeStylingTemplateByStylingTemplateIdRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkPrintPageTemplateResource extends Resource {\n\n async delete(options?: any): Promise<any> {\n const request = new DeletePrintPageTemplateRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async update(requestBody: UpdatePrintPageTemplateRequestBody, options?: any): Promise<UpdatePrintPageTemplateResponseBody> {\n const request = new UpdatePrintPageTemplateRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n async get(options?: any): Promise<GetPrintPageTemplateResponseBody> {\n const request = new GetPrintPageTemplateRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAuthSessionResources extends Resources {\n\n async delete(options?: any): Promise<DeleteSessionResponseBody> {\n const request = new DeleteSessionRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async get(options?: any): Promise<CheckSessionResponseBody> {\n const request = new CheckSessionRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n async create(requestBody: GetSessionRequestBody, options?: any): Promise<GetSessionResponseBody> {\n const request = new GetSessionRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkRefreshAuthSessionResources extends Resources {\n\n async create(options?: any): Promise<GetSessionRefreshUserSessionResponseBody> {\n const request = new GetSessionRefreshRequest(this.session)\n return request.go(this.pathParameters, undefined, options)\n }\n\n}\n\nexport class SdkAuthUserResources extends Resources {\n\n async create(requestBody: CreateUserRequestBody, options?: any): Promise<any> {\n const request = new CreateUserRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkConfirmationAuthUserResources extends Resources {\n\n async create(requestBody: ResendConfirmationRequestBody, options?: any): Promise<any> {\n const request = new ResendConfirmationRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkResetAuthUserResources extends Resources {\n\n async create(requestBody: ResetPasswordRequestBody, options?: any): Promise<any> {\n const request = new ResetPasswordRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkPasswordAuthUserResources extends Resources {\n\n async create(requestBody: ChangePasswordRequestBody, options?: any): Promise<ChangePasswordResponseBody> {\n const request = new ChangePasswordRequest(this.session)\n return request.go(this.pathParameters, undefined, requestBody, options)\n }\n\n}\n\nexport class SdkResources extends Resources {\n\n apikey(apiKeyId: string): SdkApikeyResource {\n return new SdkApikeyResource(this.getSession(), {...this.pathParameters, apiKeyId})\n }\n\n app(appId: string): SdkAppResource {\n return new SdkAppResource(this.getSession(), {...this.pathParameters, appId})\n }\n\n apps(): SdkAppsResources {\n return new SdkAppsResources(this.getSession(), this.pathParameters)\n }\n\n appsPublished(): SdkAppsPublishedResources {\n return new SdkAppsPublishedResources(this.getSession(), this.pathParameters)\n }\n\n assettype(assetTypeId: string): SdkAssettypeResource {\n return new SdkAssettypeResource(this.getSession(), {...this.pathParameters, assetTypeId})\n }\n\n assetgraph(assetGraphId: string): SdkAssetgraphResource {\n return new SdkAssetgraphResource(this.getSession(), {...this.pathParameters, assetGraphId})\n }\n\n asset(assetId: string): SdkAssetResource {\n return new SdkAssetResource(this.getSession(), {...this.pathParameters, assetId})\n }\n\n batch(batchId: string): SdkBatchResource {\n return new SdkBatchResource(this.getSession(), {...this.pathParameters, batchId})\n }\n\n billingCancelDowngrade(accountId: string): SdkBillingCancelDowngradeResource {\n return new SdkBillingCancelDowngradeResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n appsAccount(appAccountId: string): SdkAppsAccountResource {\n return new SdkAppsAccountResource(this.getSession(), {...this.pathParameters, appAccountId})\n }\n\n billingDowngradePlan(accountId: string): SdkBillingDowngradePlanResource {\n return new SdkBillingDowngradePlanResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n billingCancelSubscription(accountId: string): SdkBillingCancelSubscriptionResource {\n return new SdkBillingCancelSubscriptionResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n upgradePlanBillingPreview(accountId: string): SdkUpgradePlanBillingPreviewResource {\n return new SdkUpgradePlanBillingPreviewResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n billingSetupIntent(accountId: string): SdkBillingSetupIntentResource {\n return new SdkBillingSetupIntentResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n billingDetail(accountId: string): SdkBillingDetailResource {\n return new SdkBillingDetailResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n billingCurrentPeriod(accountId: string): SdkBillingCurrentPeriodResource {\n return new SdkBillingCurrentPeriodResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n careAccounts(): SdkCareAccountsResources {\n return new SdkCareAccountsResources(this.getSession(), this.pathParameters)\n }\n\n customdomain(customDomain: string): SdkCustomdomainResource {\n return new SdkCustomdomainResource(this.getSession(), {...this.pathParameters, customDomain})\n }\n\n contact(contactId: string): SdkContactResource {\n return new SdkContactResource(this.getSession(), {...this.pathParameters, contactId})\n }\n\n billingInvoice(accountId: string): SdkBillingInvoiceResource {\n return new SdkBillingInvoiceResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n billingUpgradePlan(accountId: string): SdkBillingUpgradePlanResource {\n return new SdkBillingUpgradePlanResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n job(jobId: string): SdkJobResource {\n return new SdkJobResource(this.getSession(), {...this.pathParameters, jobId})\n }\n\n invitation(invitationId: string): SdkInvitationResource {\n return new SdkInvitationResource(this.getSession(), {...this.pathParameters, invitationId})\n }\n\n printJob(printJobId: string): SdkPrintJobResource {\n return new SdkPrintJobResource(this.getSession(), {...this.pathParameters, printJobId})\n }\n\n support(): SdkSupportResources {\n return new SdkSupportResources(this.getSession(), this.pathParameters)\n }\n\n project(projectId: string): SdkProjectResource {\n return new SdkProjectResource(this.getSession(), {...this.pathParameters, projectId})\n }\n\n qrcodelink(qrCodeLink: string): SdkQrcodelinkResource {\n return new SdkQrcodelinkResource(this.getSession(), {...this.pathParameters, qrCodeLink})\n }\n\n qrcodelogo(qrCodeLogoId: string): SdkQrcodelogoResource {\n return new SdkQrcodelogoResource(this.getSession(), {...this.pathParameters, qrCodeLogoId})\n }\n\n qrCode(qrCodeId: string): SdkQrCodeResource {\n return new SdkQrCodeResource(this.getSession(), {...this.pathParameters, qrCodeId})\n }\n\n file(fileId: string): SdkFileResource {\n return new SdkFileResource(this.getSession(), {...this.pathParameters, fileId})\n }\n\n scan(scanId: string): SdkScanResource {\n return new SdkScanResource(this.getSession(), {...this.pathParameters, scanId})\n }\n\n location(locationId: string): SdkLocationResource {\n return new SdkLocationResource(this.getSession(), {...this.pathParameters, locationId})\n }\n\n account(accountId: string): SdkAccountResource {\n return new SdkAccountResource(this.getSession(), {...this.pathParameters, accountId})\n }\n\n userroles(): SdkUserrolesResources {\n return new SdkUserrolesResources(this.getSession(), this.pathParameters)\n }\n\n user(userId: string): SdkUserResource {\n return new SdkUserResource(this.getSession(), {...this.pathParameters, userId})\n }\n\n usermedia(mediaId: string): SdkUsermediaResource {\n return new SdkUsermediaResource(this.getSession(), {...this.pathParameters, mediaId})\n }\n\n pricePlans(): SdkPricePlansResources {\n return new SdkPricePlansResources(this.getSession(), this.pathParameters)\n }\n\n printStickerTemplate(printStickerTemplateId: string): SdkPrintStickerTemplateResource {\n return new SdkPrintStickerTemplateResource(this.getSession(), {...this.pathParameters, printStickerTemplateId})\n }\n\n stylingtemplate(stylingTemplateId: string): SdkStylingtemplateResource {\n return new SdkStylingtemplateResource(this.getSession(), {...this.pathParameters, stylingTemplateId})\n }\n\n printPageTemplate(printPageTemplateId: string): SdkPrintPageTemplateResource {\n return new SdkPrintPageTemplateResource(this.getSession(), {...this.pathParameters, printPageTemplateId})\n }\n\n authSession(): SdkAuthSessionResources {\n return new SdkAuthSessionResources(this.getSession(), this.pathParameters)\n }\n\n refreshAuthSession(): SdkRefreshAuthSessionResources {\n return new SdkRefreshAuthSessionResources(this.getSession(), this.pathParameters)\n }\n\n authUser(): SdkAuthUserResources {\n return new SdkAuthUserResources(this.getSession(), this.pathParameters)\n }\n\n confirmationAuthUser(): SdkConfirmationAuthUserResources {\n return new SdkConfirmationAuthUserResources(this.getSession(), this.pathParameters)\n }\n\n resetAuthUser(): SdkResetAuthUserResources {\n return new SdkResetAuthUserResources(this.getSession(), this.pathParameters)\n }\n\n passwordAuthUser(): SdkPasswordAuthUserResources {\n return new SdkPasswordAuthUserResources(this.getSession(), this.pathParameters)\n }\n\n}\n\n","/* eslint-disable no-console */\nimport {Request} from './request'\n\nexport class RequestDelete<PathParameters, QueryParameters, ResponseBody> extends Request {\n async go(\n pathParameters: PathParameters,\n queryParameters: QueryParameters,\n options?: any,\n ): Promise<ResponseBody> {\n try {\n const willAuthorize: boolean = options ? options.willAuthorize : true\n const url = await this.makeUri(pathParameters)\n if (willAuthorize) await this.session.authorize()\n this.debugRequest('delete', url, queryParameters, null, options)\n const axios = await this.session.getAxios()\n const response = await axios.delete(url, {params: queryParameters, ...options})\n this.debugResponse(response)\n return response.data as ResponseBody\n } catch (err) {\n throw this.handleAndDebugErr(err)\n }\n }\n}\n","/* eslint-disable no-console */\nimport {Request} from './request'\n\nexport class RequestGet<PathParameters, QueryParameters, ResponseBody> extends Request {\n async go(\n pathParameters: PathParameters,\n queryParameters?: QueryParameters,\n options?: any,\n ): Promise<ResponseBody> {\n try {\n const willAuthorize: boolean = options ? options.willAuthorize : true\n const url = await this.makeUri(pathParameters)\n if (willAuthorize) await this.session.authorize()\n this.debugRequest('get', url, queryParameters, null, options)\n const axios = await this.session.getAxios()\n const response = await axios.get(url, {params: queryParameters, ...options})\n this.debugResponse(response)\n return response.data as ResponseBody\n } catch (err) {\n throw this.handleAndDebugErr(err)\n }\n }\n}\n","/* eslint-disable no-console */\nimport {Request} from './request'\n\nexport class RequestPatch<PathParameters, QueryParameters, RequestBody, ResponseBody> extends Request {\n async go(\n pathParameters: PathParameters,\n queryParameters?: QueryParameters,\n body?: RequestBody,\n options?: any,\n ): Promise<ResponseBody> {\n try {\n const willAuthorize: boolean = options ? options.willAuthorize : true\n const url = await this.makeUri(pathParameters)\n if (willAuthorize) await this.session.authorize()\n this.debugRequest('patch', url, queryParameters, body, options)\n const axios = await this.session.getAxios()\n const response = await axios.patch(url, body, {params: queryParameters, ...options})\n this.debugResponse(response)\n return response.data! as ResponseBody\n } catch (err) {\n throw this.handleAndDebugErr(err)\n }\n }\n}\n","/* eslint-disable no-console */\nimport {Request} from './request'\n\nexport class RequestPost<PathParameters, QueryParameters, RequestBody, ResponseBody> extends Request {\n async go(\n pathParameters: PathParameters,\n queryParameters?: QueryParameters,\n body?: RequestBody,\n options?: any,\n ): Promise<ResponseBody> {\n try {\n const willAuthorize: boolean = options ? options.willAuthorize : true\n const url = await this.makeUri(pathParameters)\n if (willAuthorize) await this.session.authorize()\n this.debugRequest('post', url, queryParameters, body, options)\n const axios = await this.session.getAxios()\n const response = await axios.post(url, body, {params: queryParameters, ...options})\n this.debugResponse(response)\n return response.data! as ResponseBody\n } catch (err) {\n throw this.handleAndDebugErr(err)\n }\n }\n}\n","import {IOpenscreenSession} from './openscreen-session'\n\nexport class Resources {\n protected session: IOpenscreenSession\n protected pathParameters: any\n\n constructor(session: IOpenscreenSession, pathParameters: any) {\n this.session = session\n this.pathParameters = pathParameters\n }\n\n self() {\n return this\n }\n\n getSession(): IOpenscreenSession {\n return this.session\n }\n}\n\nexport class Resource {\n protected session: IOpenscreenSession\n protected pathParameters: any\n protected id?: string\n\n constructor(session: IOpenscreenSession, pathParameters: any) {\n this.session = session\n this.pathParameters = pathParameters\n }\n\n getSession(): IOpenscreenSession {\n return this.session\n }\n}\n","\nimport axios, {AxiosInstance} from 'axios'\nimport { wrapper } from 'axios-cookiejar-support'\nimport { CookieJar } from 'tough-cookie'\n\nimport {CreateUserRequestBody, SdkResources, User} from './sdk'\nimport {ICloudConfig} from './cloud-config'\nimport {IConfig} from './config'\nimport {IOpenscreenSession} from './openscreen-session'\n\nconst ProdConfigurationPath = 'internal-JG0adajZUHU'\n\nasync function getCloudConfig(pathToConfig: string): Promise<ICloudConfig> {\n const thisAxios = axios.create({\n baseURL: 'https://config.openscreen.com',\n timeout: 25000,\n responseType: 'json',\n maxContentLength: 10 * 1024,\n maxBodyLength: 10 * 1024,\n maxRedirects: 1,\n decompress: true,\n })\n const response = await thisAxios.get(`${pathToConfig}.json`).catch((err: {message: any}) => {\n throw new Error(`Openscreen: unable to load cloud configuration '${pathToConfig}': ${err.message}`)\n })\n const {data} = response\n return data as ICloudConfig\n}\n\nclass NullSession implements IOpenscreenSession {\n public debugConfig = false\n public debugAuth = false\n public debugRequest = false\n public debugResponse = false\n public debugError = false\n public debugQuery = false\n public debugOptions = false\n public exp = 0\n\n getConfig(): IConfig {\n throw Error('no session')\n }\n\n getCloudConfig(): Promise<ICloudConfig> {\n throw Error('no session')\n }\n\n getAxios(): Promise<AxiosInstance> {\n throw Error('no session')\n }\n\n async authorize(): Promise<void> {\n throw Error('no session')\n }\n\n getUser(): User | undefined {\n return undefined\n }\n\n async getSignedInUser(): Promise<User> {\n throw Error('no session')\n }\n\n async createUser(): Promise<boolean> {\n throw Error('no session')\n }\n\n async changePassword(): Promise<boolean> {\n throw Error('no session')\n }\n\n async signOut(): Promise<void> {\n throw Error('no session')\n }\n}\n\nexport class Openscreen extends SdkResources implements IOpenscreenSession {\n protected _config?: IConfig\n protected cloudConfigName?: string\n protected cloudConfig?: Promise<ICloudConfig>\n protected axios?: AxiosInstance\n protected _user: User | undefined\n public debugConfig: boolean = false\n public debugAuth: boolean = false\n public debugRequest: boolean = false\n public debugResponse: boolean = false\n public debugError: boolean = false\n public debugQuery: boolean = false\n public debugOptions: boolean = false\n public exp: number\n\n constructor() {\n super(new NullSession(), {})\n this.exp = 0\n let {OS_DEBUG} = process.env\n if (OS_DEBUG) {\n console.log(`OS_DEBUG=${OS_DEBUG}`)\n OS_DEBUG = OS_DEBUG.toLowerCase()\n let debug\n switch (OS_DEBUG) {\n case 'all':\n this.debugConfig = true\n this.debugAuth = true\n this.debugRequest = true\n this.debugResponse = true\n this.debugError = true\n this.debugQuery = true\n this.debugOptions = true\n break\n case 'none':\n case 'off':\n case 'false':\n case '':\n this.debugConfig = false\n this.debugAuth = false\n this.debugRequest = false\n this.debugResponse = false\n this.debugError = false\n this.debugQuery = false\n this.debugOptions = false\n break\n default:\n debug = OS_DEBUG.split(',')\n this.debugConfig = debug.includes('config')\n this.debugAuth = debug.includes('auth')\n this.debugRequest = debug.includes('request')\n this.debugResponse = debug.includes('response')\n this.debugError = debug.includes('error')\n this.debugQuery = debug.includes('query')\n this.debugOptions = debug.includes('options')\n if (\n !(\n this.debugConfig ||\n this.debugAuth ||\n this.debugRequest ||\n this.debugResponse ||\n this.debugError ||\n this.debugQuery ||\n this.debugOptions\n )\n ) {\n console.warn(`Openscreen: OS_DEBUG environment var has invalid value: '${process.env.OS_DEBUG}'`)\n }\n break\n }\n }\n }\n\n getSession() {\n return this\n }\n\n config(config: IConfig): Openscreen {\n if (this._config) {\n throw Error('Openscreen: client is already configured')\n }\n if (config.key) {\n if (!config.secret) {\n throw Error('Openscreen: invalid config, secret is missing')\n }\n } else {\n throw Error('Openscreen: invalid config, provide API key and secret, or email and password')\n }\n if (typeof config.environment === 'string') {\n this.cloudConfigName = config.environment\n } else if (typeof config.environment === 'object') {\n this.cloudConfig = Promise.resolve(config.environment)\n } else {\n this.cloudConfigName = ProdConfigurationPath\n }\n // eslint-disable-next-line no-param-reassign\n this._config = config\n return this\n }\n\n getConfig(): IConfig {\n if (!this._config) {\n throw Error('Openscreen: client must be configured before accessing resources')\n }\n return this._config\n }\n\n async getSignedInUser(): Promise<User> {\n await this.authorize()\n return this._user!\n }\n\n async createUser(requestBody: CreateUserRequestBody): Promise<boolean> {\n return new SdkResources(this, {}).authUser().create(requestBody, { willAuthorize: false })\n }\n\n async checkSession(): Promise<boolean> {\n if (this.debugAuth) console.info(`Openscreen AUTH: checking session`)\n await this.authSession().get({ willAuthorize: false })\n return true\n }\n\n async authorize(): Promise<void> {\n\n // CURRENT ACCESS TOKEN IS STILL VALID\n if (this.exp > new Date().getTime()) {\n if (this.debugAuth) console.info(`Openscreen AUTH: already authorized '${this._user.email}' until expiry=${this.exp}`)\n return\n }\n\n // THERE IS AN ACCESS TOKEN BUT WE NEED TO REFRESH IT\n if (this.exp !== 0) {\n if (this.debugAuth) console.info(`Openscreen AUTH: refreshing '${this._user.email}'`)\n const res = await this.refreshAuthSession().create({ willAuthorize: false })\n const {expires} = res\n this.exp = Number(expires)\n if (this.debugAuth) console.info(`Openscreen AUTH: authorized '${this._user.email}' until expiry=${expires}`)\n return\n }\n\n // if code reaches here that means the exp == 0 and it's a brand new session so we gotta login\n const config = this.getConfig()\n if (this.debugConfig) {\n const c = {...config}\n if (c.secret) c.secret = '*'.repeat(c.secret.length)\n console.debug(`Openscreen CONFIG:`, c)\n }\n\n const email = config.key!\n const password = config.secret!\n if (this.debugAuth) console.info(`Openscreen AUTH: authorizing '${email}'`)\n const res = await this.authSession().create({ email, password }, { willAuthorize: false })\n const {expires, user} = res\n if (user) {\n this._user = user\n } else {\n this._user = {\n email,\n firstName: '',\n lastName: '',\n middleName: '',\n userId: '00000000-0000-0000-0000-000000000000',\n }\n }\n this.exp = Number(expires)\n if (this.debugAuth) console.info(`Openscreen AUTH: authorized '${email}' until expiry=${expires}`)\n }\n\n getUser(): User | undefined {\n return this._user\n }\n\n async getCloudConfig(): Promise<ICloudConfig> {\n if (!this.cloudConfig) {\n if (!this.cloudConfigName) {\n throw Error('Openscreen: environment name missing')\n }\n this.cloudConfig = getCloudConfig(this.cloudConfigName)\n }\n return this.cloudConfig\n }\n\n async getAxios(): Promise<AxiosInstance> {\n if (this.axios) return this.axios\n const jar = new CookieJar()\n const cloudConfig = await this.getCloudConfig()\n if (cloudConfig.axios) {\n this.axios = wrapper(axios.create({ ...cloudConfig.axios, jar }))\n } else {\n this.axios = wrapper(axios.create({\n decompress: true,\n jar,\n maxBodyLength: 1024 * 1024,\n maxContentLength: 1024 * 1024,\n maxRedirects: 1,\n responseType: 'json',\n timeout: 25000,\n }))\n }\n return this.axios\n }\n\n async changePassword(oldPassword: string, newPassword: string): Promise<boolean> {\n await this.passwordAuthUser().create({\n password: oldPassword,\n newPassword,\n }, { willAuthorize: false })\n return true\n }\n\n async signOut() {\n await this.authSession().delete({ willAuthorize: false })\n this._user = {\n email: '',\n firstName: '',\n lastName: '',\n middleName: '',\n userId: '00000000-0000-0000-0000-000000000000',\n }\n this.exp = 0\n }\n}\n"],"names":["AccountDomainTypes","AccountSortingTypes","AccountStatus","AccountType","AccountUserRole","AssetByAssetTypeSortingTypes","AssetCreationFileTypes","AssetSortingTypes","AssetTypeSortingTypes","AssetTypeUsabilityState","AuthMessageId","AuthTokenScope","CampaignUseCaseCategory","ConsentStatus","ConsentType","ContactAssetSortingTypes","ContactSortingTypes","DomainStatus","FieldType","InternalProductName","InvoiceStatus","JobStatus","JobType","Label","LocationSortingTypes","OpenscreenEmails","Permission","PluginNameTypes","PluginStatus","PricePlanName","PricePlanPaymentPeriod","PricePlanReporting","PrintFormat","PrintMode","PrintOrientation","PrintTemplate","PrintUnit","ProjectSortingTypes","ProjectStatus","QrCodeCornerDotTypes","QrCodeCornerSquareTypes","QrCodeDotTypes","QrCodeDynamicRedirectType","QrCodeErrorCorrectionLevel","QrCodeGradientTypes","QrCodeIntentType","QrCodeLocatorKeyType","QrCodeSortingTypes","QrCodeStatus","QrCodeType","QueryConditions","ScanTimelineOptions","StickerShape","TagActions","TagStates","UserCredentialsStatus","UserGroups","UserMediaFileTypes","UserMediaSortingTypes","Request","session","routeSegments","this","_proto","prototype","makeUri","pathParameters","_this","Promise","resolve","getCloudConfig","then","cloudConfig","urlParts","endpoint","replace","forEach","segment","push","routePart","parm","value","Error","join","e","reject","debugRequest","httpMethod","url","queryParameters","body","options","console","debug","toUpperCase","JSON","stringify","debugQuery","debugOptions","debugResponse","response","data","handleAndDebugErr","err","debugError","error","_unused","RequestDelete","_Request","apply","arguments","_inheritsLoose","go","willAuthorize","_temp2","getAxios","axios","_extends","params","_temp","authorize","_catch","RequestGet","get","RequestPatch","patch","RequestPost","post","Resources","self","getSession","Resource","id","AuthTypes","EntitySources","UserSettingsDomain","GetApiKeySecretRequest","_RequestGet","_len","length","args","Array","_key","call","concat","sdkPartName","UpdateAppByAppIdRequest","_RequestPatch","_this2","_len2","_key2","ResetApiKeySecretRequest","_RequestPatch2","_this3","_len3","_key3","GetAppsRequest","_RequestGet2","_this4","_len4","_key4","GetApiKeyRequest","_RequestGet3","_this5","_len5","_key5","GetPublishedAppsRequest","_RequestGet4","_this6","_len6","_key6","LoadAppRequest","_RequestPost","_this7","_len7","_key7","DeleteAssetTypeRequest","_RequestDelete","_len8","_this8","_key8","GetAssetTypeByAssetTypeIdRequest","_RequestGet5","_len9","_this9","_key9","UpdateApiKeyRequest","_RequestPatch3","_this0","_len0","_key0","GetAppByAppIdRequest","_RequestGet6","_len1","_this1","_key1","GetAssetsByAssetTypeRequest","_RequestGet7","_this10","_len10","_key10","GetAssetTypeCountAtLocationRequest","_RequestGet8","_len11","_this11","_key11","ComposeAssetByAssetTypeRequest","_RequestPost2","_this12","_len12","_key12","CreateAssetByAssetTypeRequest","_RequestPost3","_this13","_len13","_key13","GetAssetTypeCountsByLocationRequest","_RequestGet9","_this14","_len14","_key14","UpdateAssetTypeRequest","_RequestPatch4","_len15","_this15","_key15","UpdateAssetTypeCountAtLocationRequest","_RequestPatch5","_this16","_len16","_key16","GetAssetGraphRequest","_RequestGet0","_this17","_len17","_key17","UpdateAssetGraphRequest","_RequestPatch6","_this18","_len18","_key18","CreateContactByAssetIdRequest","_RequestPost4","_len19","_this19","_key19","CreateQrCodeByAssetIdRequest","_RequestPost5","_this20","_len20","_key20","NameRequest","_RequestGet1","_len21","_this21","_key21","DeleteNeighborsByAssetIdRequest","_RequestPost6","_this22","_len22","_key22","DeleteAssetGraphRequest","_RequestDelete2","_this23","_len23","_key23","DeleteAssetRequest","_RequestDelete3","_this24","_len24","_key24","CreateNeighborsByAssetIdRequest","_RequestPost7","_this25","_len25","_key25","GetNeighborScanCountByAssetIdRequest","_RequestGet10","_len26","_this26","_key26","GetContactsByAssetIdRequest","_RequestGet11","_len27","_this27","_key27","GetAssetHistoryRequest","_RequestGet12","_this28","_len28","_key28","GetExternalNeighborScanCountByAssetIdRequest","_RequestGet13","_this29","_len29","_key29","GetNeighborsByAssetIdRequest","_RequestGet14","_this30","_len30","_key30","GetScanExportByAssetIdRequest","_RequestPost8","_this31","_len31","_key31","CreateQrCodesByAssetIdRequest","_RequestPost9","_len32","_this32","_key32","GetScanLocationDataByAssetIdRequest","_RequestGet15","_this33","_len33","_key33","GetQrCodesByAssetIdRequest","_RequestGet16","_len34","_this34","_key34","GetScansByAssetIdRequest","_RequestGet17","_this35","_len35","_key35","UpdateAssetRequest","_RequestPatch7","_this36","_len36","_key36","UnlinkContactToAssetRequest","_RequestDelete4","_len37","_this37","_key37","LinkContactToAssetRequest","_RequestPost0","_len38","_this38","_key38","GetAssetsByBatchIdRequest","_RequestGet18","_len39","_this39","_key39","CancelDowngradeRequestRequest","_RequestPost1","_this40","_len40","_key40","GetAppAccountByAppAccountIdRequest","_RequestGet19","_this41","_len41","_key41","GetMainAccountByAppAccountIdRequest","_RequestGet20","_this42","_len42","_key42","DowngradePlanRequest","_RequestPost10","_this43","_len43","_key43","CancelSubscriptionRequest","_RequestPost11","_len44","_this44","_key44","ChangeSubscriptionPreviewRequest","_RequestGet21","_this45","_len45","_key45","CreateSetupIntentRequest","_RequestPost12","_this46","_len46","_key46","GetBillingDetailsRequest","_RequestGet22","_this47","_len47","_key47","GetCurrentPeriodRequest","_RequestGet23","_this48","_len48","_key48","GetAllAccountsRequest","_RequestGet24","_this49","_len49","_key49","CheckCustomLocatorKeyRangeRequest","_RequestGet25","_this50","_len50","_key50","GetUserMediasByAssetIdRequest","_RequestGet26","_len51","_this51","_key51","DeleteConsentByContactIdRequest","_RequestDelete5","_len52","_this52","_key52","RetryCustomDomainRequest","_RequestPost13","_this53","_len53","_key53","GetInvoicesRequest","_RequestGet27","_this54","_len54","_key54","ChangeSubscriptionRequest","_RequestPost14","_this55","_len55","_key55","DeleteContactRequest","_RequestDelete6","_this56","_len56","_key56","GetAssetsByContactIdRequest","_RequestGet28","_this57","_len57","_key57","DeleteCustomDomainRequest","_RequestDelete7","_len58","_this58","_key58","CreateConsentByContactIdRequest","_RequestPost15","_len59","_this59","_key59","GetConsentByContactIdRequest","_RequestGet29","_this60","_len60","_key60","GetScanLocationDataByContactIdRequest","_RequestGet30","_this61","_len61","_key61","GetScansByContactIdRequest","_RequestGet31","_len62","_this62","_key62","LinkContactToScanRequest","_RequestPost16","_this63","_len63","_key63","GetScanExportByContactIdRequest","_RequestPost17","_this64","_len64","_key64","GetContactExportByContactIdRequest","_RequestPost18","_len65","_this65","_key65","UpdateContactRequest","_RequestPatch8","_this66","_len66","_key66","DeleteJobRequest","_RequestDelete8","_this67","_len67","_key67","GetContactRequest","_RequestGet32","_this68","_len68","_key68","CreateUserByInvitationIdRequest","_RequestPost19","_this69","_len69","_key69","GetInvitationRequest","_RequestGet33","_this70","_len70","_key70","DeletePrintJobRequest","_RequestDelete9","_len71","_this71","_key71","DeleteInvitationRequest","_RequestDelete0","_this72","_len72","_key72","GetJobRequest","_RequestGet34","_this73","_len73","_key73","SendSupportEmailRequest","_RequestPost20","_len74","_this74","_key74","CreateAssetCreationJobByProjectIdRequest","_RequestPost21","_len75","_this75","_key75","GetQrCodeLinkRequest","_RequestGet35","_this76","_len76","_key76","CreateAssetCreationPresignedUrlRequest","_RequestPost22","_this77","_len77","_key77","InvokePrintJobByJobIdRequest","_RequestPatch9","_this78","_len78","_key78","CreateContactByProjectIdRequest","_RequestPost23","_len79","_this79","_key79","CreateAssetByProjectIdRequest","_RequestPost24","_this80","_len80","_key80","CreateAssetGraphByProjectIdRequest","_RequestPost25","_len81","_this81","_key81","CreateSelfQueuePrintJobByProjectIdRequest","_RequestPost26","_this82","_len82","_key82","CreateQrCodeByProjectIdRequest","_RequestPost27","_this83","_len83","_key83","CreateAssetBatchValidationJobByProjectIdRequest","_RequestPost28","_len84","_this84","_key84","CreateAssetsByProjectIdRequest","_RequestPost29","_this85","_len85","_key85","CreateSmsTemplateByProjectIdRequest","_RequestPost30","_len86","_this86","_key86","DeleteContactsByProjectIdRequest","_RequestDelete1","_this87","_len87","_key87","CreateTemplatedPrintJobByProjectIdRequest","_RequestPost31","_len88","_this88","_key88","DeleteProjectRequest","_RequestDelete10","_this89","_len89","_key89","CreateContactsByProjectIdRequest","_RequestPost32","_this90","_len90","_key90","CreateTemplatedPrintPreviewByProjectIdRequest","_RequestPost33","_len91","_this91","_key91","DeleteSmsTemplateByProjectIdRequest","_RequestDelete11","_this92","_len92","_key92","GetAdvancedContactReportByProjectIdRequest","_RequestGet36","_this93","_len93","_key93","GetAdvancedAssetReportByProjectIdRequest","_RequestGet37","_len94","_this94","_key94","GetAdvancedScanReportByProjectIdRequest","_RequestGet38","_this95","_len95","_key95","GetAssetExportByProjectIdRequest","_RequestPost34","_this96","_len96","_key96","GetBasicContactReportByProjectIdRequest","_RequestGet39","_len97","_this97","_key97","GetAssetGraphsByProjectIdRequest","_RequestGet40","_len98","_this98","_key98","GetBasicAssetReportByProjectIdRequest","_RequestGet41","_this99","_len99","_key99","GetContactExportByProjectIdRequest","_RequestPost35","_len100","_this100","_key100","GetConsentByProjectIdRequest","_RequestGet42","_this101","_len101","_key101","GetBatchesByProjectIdRequest","_RequestGet43","_len102","_this102","_key102","GetMostScannedAssetsByProjectIdRequest","_RequestGet44","_this103","_len103","_key103","GetAssetsByProjectIdRequest","_RequestGet45","_this104","_len104","_key104","GetContactsByProjectIdRequest","_RequestGet46","_len105","_this105","_key105","GetScanDayOfWeekByProjectIdRequest","_RequestGet47","_this106","_len106","_key106","GetScanTimelineByProjectIdRequest","_RequestGet48","_len107","_this107","_key107","GetScanTimeOfDayByProjectIdRequest","_RequestGet49","_this108","_len108","_key108","GetScanExportByProjectIdRequest","_RequestPost36","_this109","_len109","_key109","GetScansByProjectIdRequest","_RequestGet50","_this110","_len110","_key110","GetProjectByProjectIdRequest","_RequestGet51","_this111","_len111","_key111","GetUserMediasByProjectIdRequest","_RequestGet52","_len112","_this112","_key112","GetQrCodesByProjectIdRequest","_RequestGet53","_this113","_len113","_key113","UpdateQrCodeLogoByQrCodeLogoIdRequest","_RequestPatch0","_this114","_len114","_key114","CreateLinkByQrCodeRequest","_RequestPost37","_this115","_len115","_key115","ValidateFileRequest","_RequestPost38","_len116","_this116","_key116","GetQrCodeRequest","_RequestGet54","_len117","_this117","_key117","UpdateProjectByProjectIdRequest","_RequestPatch1","_this118","_len118","_key118","GetLinksByQrCodeRequest","_RequestGet55","_this119","_len119","_key119","GetFileRequest","_RequestGet56","_len120","_this120","_key120","GetQrCodeLogoByQrCodeLogoIdRequest","_RequestGet57","_len121","_this121","_key121","DeleteQrCodeRequest","_RequestDelete12","_len122","_this122","_key122","UpdateQrCodeRequest","_RequestPatch10","_this123","_len123","_key123","DeleteLinkByQrCodeRequest","_RequestDelete13","_this124","_len124","_key124","CreateContactByScanIdRequest","_RequestPost39","_this125","_len125","_key125","SaveGeolocationByScanIdRequest","_RequestPatch11","_len126","_this126","_key126","GetScanRequest","_RequestGet58","_this127","_len127","_key127","UpdateScanCustomAttributeRequest","_RequestPatch12","_len128","_this128","_key128","UpdateAssetsLocationsRequest","_RequestPatch13","_this129","_len129","_key129","DeleteLocationRequest","_RequestDelete14","_len130","_this130","_key130","UpdateLocationRequest","_RequestPatch14","_len131","_this131","_key131","CreateApiKeyByAccountIdRequest","_RequestPost40","_len132","_this132","_key132","GetAccountAccessDataRequest","_RequestGet59","_this133","_len133","_key133","GetAssetsByLocationIdRequest","_RequestGet60","_this134","_len134","_key134","CreateAssetTypeByAccountIdRequest","_RequestPost41","_this135","_len135","_key135","CreateAppRequest","_RequestPost42","_len136","_this136","_key136","CheckUrlSafetyByAccountIdRequest","_RequestPost43","_this137","_len137","_key137","CreateLocationByAccountIdRequest","_RequestPost44","_len138","_this138","_key138","CreatePrintPageTemplateByAccountIdRequest","_RequestPost45","_this139","_len139","_key139","CreateImageUploadPresignedUrlRequest","_RequestPost46","_this140","_len140","_key140","CreateInvitationByAccountIdRequest","_RequestPost47","_this141","_len141","_key141","CreateQrCodeLogoByAccountRequest","_RequestPost48","_this142","_len142","_key142","CreateInvitationsByAccountIdRequest","_RequestPost49","_len143","_this143","_key143","CreatePrintStickerTemplateByAccountIdRequest","_RequestPost50","_len144","_this144","_key144","CreateProjectByAccountIdRequest","_RequestPost51","_this145","_len145","_key145","CreateQrCodeStylingTemplateByAccountRequest","_RequestPost52","_len146","_this146","_key146","CreateTicketByAccountIdRequest","_RequestPost53","_this147","_len147","_key147","CreateUserMediaPresignedUrlByAccountIdRequest","_RequestPost54","_this148","_len148","_key148","DeleteContactsByAccountIdRequest","_RequestDelete15","_this149","_len149","_key149","DeleteUserByAccountIdRequest","_RequestDelete16","_this150","_len150","_key150","GetAccountRequest","_RequestGet61","_this151","_len151","_key151","GetCustomDomainRequest","_RequestGet62","_this152","_len152","_key152","GetAllAppsByAccountIdRequest","_RequestGet63","_this153","_len153","_key153","GetAdvancedContactReportByAccountIdRequest","_RequestGet64","_len154","_this154","_key154","GetAdvancedScanReportByAccountIdRequest","_RequestGet65","_len155","_this155","_key155","GetApiKeysByAccountIdRequest","_RequestGet66","_this156","_len156","_key156","GetAssetGraphsByAccountIdRequest","_RequestGet67","_this157","_len157","_key157","GetAssetTypesByAccountIdRequest","_RequestGet68","_this158","_len158","_key158","CreateUserMediaMultipartPresignedUrlByAccountIdRequest","_RequestPost55","_this159","_len159","_key159","GetAssetExportByAccountIdRequest","_RequestPost56","_len160","_this160","_key160","GetAdvancedAssetReportByAccountIdRequest","_RequestGet69","_this161","_len161","_key161","GetBasicAssetReportByAccountIdRequest","_RequestGet70","_len162","_this162","_key162","GetAssetsScanCountByAccountIdRequest","_RequestPost57","_this163","_len163","_key163","GetBasicContactReportByAccountIdRequest","_RequestGet71","_this164","_len164","_key164","GetConsentByAccountIdRequest","_RequestGet72","_len165","_this165","_key165","CreateQueryableCustomAttributeRequest","_RequestPost58","_len166","_this166","_key166","GetContactExportByAccountIdRequest","_RequestPost59","_this167","_len167","_key167","GetBatchesByAccountIdRequest","_RequestGet73","_len168","_this168","_key168","GetDomainsByAccountIdRequest","_RequestGet74","_this169","_len169","_key169","GetContactsByAccountIdRequest","_RequestGet75","_len170","_this170","_key170","GetJobsByAccountIdRequest","_RequestGet76","_this171","_len171","_key171","GetPricePlanByAccountIdRequest","_RequestGet77","_this172","_len172","_key172","GetPrintJobsByAccountIdRequest","_RequestGet78","_len173","_this173","_key173","GetAssetsByAccountIdRequest","_RequestGet79","_this174","_len174","_key174","GetPrintPageTemplatesByAccountIdRequest","_RequestGet80","_len175","_this175","_key175","GetPrintStickerTemplatesByAccountIdRequest","_RequestGet81","_this176","_len176","_key176","GetLocationsByAccountIdRequest","_RequestGet82","_this177","_len177","_key177","GetProjectsByAccountIdRequest","_RequestGet83","_this178","_len178","_key178","GetInstalledAppsByAccountIdRequest","_RequestGet84","_this179","_len179","_key179","GetPluginsByAccountIdRequest","_RequestGet85","_this180","_len180","_key180","GetMostScannedAssetsByAccountIdRequest","_RequestGet86","_len181","_this181","_key181","GetQrCodeStylingTemplatesByAccountIdRequest","_RequestGet87","_this182","_len182","_key182","GetScanTimeOfDayByAccountIdRequest","_RequestGet88","_len183","_this183","_key183","GetProjectExportByAccountIdRequest","_RequestPost60","_this184","_len184","_key184","GetQrCodeLogosByAccountIdRequest","_RequestGet89","_this185","_len185","_key185","GetScanTimelineByAccountIdRequest","_RequestGet90","_len186","_this186","_key186","GetQueryableCustomAttributeRequest","_RequestGet91","_this187","_len187","_key187","GetScanExportByAccountIdRequest","_RequestPost61","_len188","_this188","_key188","GetScanDayOfWeekByAccountIdRequest","_RequestGet92","_this189","_len189","_key189","GetQrCodesByAccountIdRequest","_RequestGet93","_this190","_len190","_key190","GetScansByAccountIdRequest","_RequestGet94","_len191","_this191","_key191","GetUserMediasByAccountIdRequest","_RequestGet95","_this192","_len192","_key192","GetUserByAccountIdRequest","_RequestGet96","_this193","_len193","_key193","GetUsersByAccountIdRequest","_RequestGet97","_this194","_len194","_key194","CreateCampaignAccountByAccountIdRequest","_RequestPost62","_this195","_len195","_key195","GetUsersRolesByAccountIdRequest","_RequestGet98","_this196","_len196","_key196","UpdateAccountRequest","_RequestPatch15","_this197","_len197","_key197","UpdateEngagePricePlanRequest","_RequestPatch16","_len198","_this198","_key198","AdvanceStripeClockByAccountIdRequest","_RequestPost63","_this199","_len199","_key199","RetrieveCampaignStatusByAccountIdRequest","_RequestGet99","_len200","_this200","_key200","InstallAppToAccountRequest","_RequestPost64","_this201","_len201","_key201","UpdateUserByAccountIdRequest","_RequestPatch17","_len202","_this202","_key202","UpdatePricePlanByAccountIdRequest","_RequestPatch18","_len203","_this203","_key203","UploadQrCodeLogoByAccountRequest","_RequestPost65","_this204","_len204","_key204","UpdateUsersRolesByAccountIdRequest","_RequestPatch19","_len205","_this205","_key205","GetUserRolesRequest","_RequestGet100","_this206","_len206","_key206","CreateAccountByUserIdRequest","_RequestPost66","_len207","_this207","_key207","GetUserRequest","_RequestGet101","_len208","_this208","_key208","GetErrorsByUserIdRequest","_RequestGet102","_this209","_len209","_key209","GetAccountsByUserIdRequest","_RequestGet103","_len210","_this210","_key210","GetInvitationsByUserIdRequest","_RequestGet104","_this211","_len211","_key211","CompleteUserMediaMultipartUploadRequest","_RequestPost67","_len212","_this212","_key212","GetPricePlansRequest","_RequestGet105","_this213","_len213","_key213","LinkMediaToAssetRequest","_RequestPost68","_len214","_this214","_key214","LinkMediaToProjectRequest","_RequestPost69","_len215","_this215","_key215","UpdateUserRequest","_RequestPatch20","_this216","_len216","_key216","GetUserSettingsByUserIdRequest","_RequestGet106","_len217","_this217","_key217","GetMediaRequest","_RequestGet107","_this218","_len218","_key218","LinkMediaToScanRequest","_RequestPost70","_this219","_len219","_key219","UnlinkMediaToAssetRequest","_RequestDelete17","_len220","_this220","_key220","SetUserSettingsByUserIdRequest","_RequestPatch21","_this221","_len221","_key221","UnlinkMediaToScanRequest","_RequestDelete18","_this222","_len222","_key222","UnlinkMediaToProjectRequest","_RequestDelete19","_this223","_len223","_key223","DeletePrintStickerTemplateRequest","_RequestDelete20","_this224","_len224","_key224","GetPrintStickerTemplateRequest","_RequestGet108","_this225","_len225","_key225","DeleteQrCodeStylingTemplateByStylingTemplateIdRequest","_RequestDelete21","_len226","_this226","_key226","DeletePrintPageTemplateRequest","_RequestDelete22","_this227","_len227","_key227","GetQrCodeStylingTemplateByStylingTemplateIdRequest","_RequestGet109","_len228","_this228","_key228","UpdatePrintPageTemplateRequest","_RequestPatch22","_len229","_this229","_key229","UpdateMediaRequest","_RequestPatch23","_this230","_len230","_key230","UpdateQrCodeStylingTemplateByStylingTemplateIdRequest","_RequestPatch24","_this231","_len231","_key231","GetPrintPageTemplateRequest","_RequestGet110","_len232","_this232","_key232","UpdatePrintStickerTemplateRequest","_RequestPatch25","_this233","_len233","_key233","DeleteSessionRequest","_RequestDelete23","_this234","_len234","_key234","CheckSessionRequest","_RequestGet111","_this235","_len235","_key235","GetSessionRequest","_RequestPost71","_this236","_len236","_key236","GetSessionRefreshRequest","_RequestPost72","_len237","_this237","_key237","CreateUserRequest","_RequestPost73","_len238","_this238","_key238","ResendConfirmationRequest","_RequestPost74","_len239","_this239","_key239","ResetPasswordRequest","_RequestPost75","_len240","_this240","_key240","ChangePasswordRequest","_RequestPost76","_len241","_this241","_key241","DeleteMediaRequest","_RequestDelete24","_this242","_len242","_key242","SdkApikeySecretResources","_Resources","request","undefined","update","SdkApikeyResource","_Resource","_proto2","secret","_this245","requestBody","SdkAppAccountLoadResources","_Resources2","create","_this247","SdkAppAccountResource","_Resource2","load","SdkAppResource","_Resource3","_proto5","account","accountId","_this249","SdkAppsResources","_Resources3","queryStringParameters","SdkAppsPublishedResources","_Resources4","_this251","SdkAssettypeAssetsResources","_Resources5","_proto8","_this252","SdkAssettypeLocationResource","_Resource4","_proto9","_this254","SdkAssettypeAssetResource","_Resource5","SdkAssettypeLocationsResources","_Resources6","SdkAssettypeResource","_Resource6","_proto10","assets","location","locationId","asset","assetId","locations","_this260","SdkAssetgraphResource","_Resource7","_proto11","_this261","SdkAssetContactsResources","_Resources7","_proto12","_this264","SdkAssetQrCodesResources","_Resources8","_proto13","SdkAssetNeighborsDeleteResources","_Resources9","_this268","SdkAssetNeighborsResources","_Resources0","_proto15","_this269","SdkAssetNeighborResource","_Resource8","SdkAssetHistoryResources","_Resources1","_this272","SdkAssetUrlResource","_Resource9","SdkAssetScansExportResources","_Resources10","SdkAssetQracodesResources","_Resources11","SdkAssetScansLocationResources","_Resources12","SdkAssetScansResources","_Resources13","_this277","SdkAssetContactResource","_Resource0","_proto23","_this278","SdkAssetUsermediasResources","_Resources14","SdkAssetResource","_Resource1","_proto25","contacts","qrCodes","neighborsDelete","neighbors","neighbor","neighborId","history","scansExport","qracodes","scansLocation","scans","contact","contactId","usermedias","_this282","SdkBatchAssetsResources","_Resources15","SdkBatchResource","_Resource10","SdkBillingCancelDowngradeResource","_Resource11","SdkAppsAccountMainResources","_Resources16","_this286","SdkAppsAccountResource","_Resource12","_proto30","main","SdkBillingDowngradePlanResource","_Resource13","SdkBillingCancelSubscriptionResource","_Resource14","SdkUpgradePlanBillingPreviewResource","_Resource15","SdkBillingSetupIntentResource","_Resource16","_this291","SdkBillingDetailResource","_Resource17","SdkBillingCurrentPeriodResource","_Resource18","_this293","SdkCareAccountsResources","_Resources17","_this294","SdkCustomdomainLocatorCollisionsResources","_Resources18","SdkCustomdomainRetryResources","_Resources19","SdkCustomdomainResource","_Resource19","_proto40","locatorCollisions","retry","SdkContactConsentResources","_Resources20","_proto41","SdkContactAssetsResources","_Resources21","_this301","SdkContactScansLocationResources","_Resources22","SdkContactScansResources","_Resources23","SdkContactScanResource","_Resource20","SdkContactScansExportResources","_Resources24","SdkContactExportResources","_Resources25","_this306","SdkContactResource","_Resource21","_proto48","consent","scan","scanId","_this308","SdkBillingInvoiceResource","_Resource22","_this310","SdkBillingUpgradePlanResource","_Resource23","SdkJobResource","_Resource24","_proto51","SdkInvitationUsersResources","_Resources26","_this314","SdkInvitationResource","_Resource25","_proto53","users","_this316","SdkPrintJobResource","_Resource26","_proto54","SdkSupportResources","_Resources27","SdkProjectJobsAssetbatchResources","_Resources28","SdkProjectPresignedurlJobsAssetbatchResources","_Resources29","_this321","SdkProjectContactsResources","_Resources30","_proto58","_this322","SdkProjectAssetsResources","_Resources31","_proto59","_this325","SdkProjectAssetgraphsResources","_Resources32","_proto60","SdkProjectSelfqueueprintResources","_Resources33","SdkProjectQrCodesResources","_Resources34","_proto62","_this330","SdkProjectValidationJobsAssetbatchResources","_Resources35","SdkProjectAssetsBatchResources","_Resources36","SdkProjectSmsTemplatesResources","_Resources37","SdkProjectContactsBatchResources","_Resources38","_proto66","SdkProjectPrintJobsResources","_Resources39","SdkProjectTemplatedPrintPreviewResources","_Resources40","_this337","SdkProjectSmsTemplateResource","_Resource27","_this338","SdkProjectAdvancedContactsReportResources","_Resources41","SdkProjectAdvancedAssetsReportResources","_Resources42","SdkProjectAdvancedScansReportResources","_Resources43","SdkProjectAssetsExportResources","_Resources44","_this342","SdkProjectBasicContactsReportResources","_Resources45","SdkProjectBasicAssetsReportResources","_Resources46","SdkProjectContactsExportResources","_Resources47","SdkProjectConsentResources","_Resources48","SdkProjectBatchResources","_Resources49","_this347","SdkProjectAssetsMostscannedResources","_Resources50","SdkProjectScansDayofweekResources","_Resources51","SdkProjectScansTimelineResources","_Resources52","SdkProjectScansTimeofdayResources","_Resources53","SdkProjectScansExportResources","_Resources54","SdkProjectScansResources","_Resources55","SdkProjectUsermediasResources","_Resources56","_this354","SdkProjectResource","_Resource28","_proto86","jobsAssetbatch","presignedurlJobsAssetbatch","assetgraphs","selfqueueprint","validationJobsAssetbatch","assetsBatch","smsTemplates","contactsBatch","printJobs","templatedPrintPreview","smsTemplate","smsTemplateName","advancedContactsReport","advancedAssetsReport","advancedScansReport","assetsExport","basicContactsReport","basicAssetsReport","contactsExport","batch","assetsMostscanned","scansDayofweek","scansTimeline","scansTimeofday","_this357","SdkQrcodelinkResource","_Resource29","SdkQrcodelogoResource","_Resource30","_proto88","_this359","_this360","SdkQrCodeLinksResources","_Resources57","_proto89","SdkQrCodeLinkResource","_Resource31","SdkQrCodeResource","_Resource32","_proto91","links","link","_this364","_this366","SdkFileValidateResources","_Resources58","_this367","SdkFileResource","_Resource33","_proto93","validate","SdkScanContactsResources","_Resources59","SdkScanCustomAttributeResources","_Resources60","SdkScanResource","_Resource34","_proto96","customAttribute","SdkLocationAssetsResources","_Resources61","_proto97","_this373","_this374","SdkLocationResource","_Resource35","_proto98","_this376","SdkAccountApikeysResources","_Resources62","_proto99","_this377","SdkAccountUserConfirmResources","_Resources63","SdkAccountUserRolesResources","_Resources64","_proto101","_this381","SdkAccountUserResource","_Resource36","_proto102","confirm","roles","_this383","_this384","SdkAccountAssettypesResources","_Resources65","_proto103","_this385","SdkAccountAppsResources","_Resources66","_proto104","_this388","SdkAccountUrlSafetiesResources","_Resources67","_this389","SdkAccountLocationsResources","_Resources68","_proto106","_this390","SdkAccountPrintPageTemplatesResources","_Resources69","_proto107","_this393","SdkAccountImageUploadResources","_Resources70","_this394","SdkAccountInvitationsResources","_Resources71","SdkAccountQrcodelogosResources","_Resources72","_proto110","_this397","SdkAccountInvitationsBatchResources","_Resources73","_this398","SdkAccountPrintStickerTemplatesResources","_Resources74","_proto112","_this400","SdkAccountProjectsResources","_Resources75","_proto113","SdkAccountStylingtemplatesResources","_Resources76","_proto114","_this403","_this404","SdkAccountZendeskTicketResources","_Resources77","SdkAccountUsermediasPresignedurlResources","_Resources78","SdkAccountContactsBatchResources","_Resources79","SdkAccountCustomDomainResource","_Resource37","SdkAccountOwnerAppsResources","_Resources80","SdkAccountAdvancedContactsReportResources","_Resources81","_this410","SdkAccountAdvancedScansReportResources","_Resources82","SdkAccountAssetgraphsResources","_Resources83","_this412","SdkAccountUsermediasPresignedurlmultipartResources","_Resources84","_this413","SdkAccountAssetsExportResources","_Resources85","_this414","SdkAccountAdvancedAssetsReportResources","_Resources86","_this415","SdkAccountBasicAssetsReportResources","_Resources87","SdkAccountAssetsScansResources","_Resources88","_this417","SdkAccountBasicContactsReportResources","_Resources89","_this418","SdkAccountConsentResources","_Resources90","SdkAccountCustomattributesResources","_Resources91","_proto130","_this421","SdkAccountContactsExportResources","_Resources92","SdkAccountBatchResources","_Resources93","SdkAccountCustomDomainsResources","_Resources94","SdkAccountContactsResources","_Resources95","_this425","SdkAccountJobsResources","_Resources96","SdkAccountPricePlanResources","_Resources97","_proto136","_this427","SdkAccountPrintJobsResources","_Resources98","SdkAccountAssetsResources","_Resources99","_this430","SdkAccountPluginsResources","_Resources100","SdkAccountAssetsMostscannedResources","_Resources101","SdkAccountScansTimeofdayResources","_Resources102","SdkAccountProjectsExportResources","_Resources103","SdkAccountScansTimelineResources","_Resources104","SdkAccountScansExportResources","_Resources105","_this436","SdkAccountScansDayofweekResources","_Resources106","SdkAccountQrCodesResources","_Resources107","SdkAccountScansResources","_Resources108","SdkAccountUsermediasResources","_Resources109","_this440","SdkAccountUsersResources","_Resources110","_this441","SdkAccountCampaignInformationResources","_Resources111","_proto150","_this442","_this443","SdkAccountEngagePricePlanResources","_Resources112","SdkAccountClockResources","_Resources113","SdkAccountAppInstallResources","_Resources114","SdkAccountAppResource","_Resource38","install","SdkAccountQrcodelogosUploadResources","_Resources115","SdkAccountResource","_Resource39","_proto156","apikeys","user","userId","assettypes","apps","urlSafeties","printPageTemplates","imageUpload","invitations","qrcodelogos","invitationsBatch","printStickerTemplates","projects","stylingtemplates","zendeskTicket","usermediasPresignedurl","customDomain","ownerApps","usermediasPresignedurlmultipart","assetsScans","customattributes","customDomains","jobs","pricePlan","plugins","projectsExport","campaignInformation","engagePricePlan","clock","app","appId","qrcodelogosUpload","SdkUserrolesResources","_Resources116","SdkUserAccountsResources","_Resources117","_proto158","_this452","SdkUserErrorsResources","_Resources118","SdkUserInvitationsResources","_Resources119","_this454","SdkUserPathSettingsResources","_Resources120","_proto161","SdkUserPathResource","_Resource40","settings","SdkUserResource","_Resource41","_proto163","accounts","errors","path","_this458","SdkUsermediaMultipartResources","_Resources121","_this459","SdkUsermediaAssetResource","_Resource42","_proto165","_this460","SdkUsermediaProjectResource","_Resource43","_proto166","_this462","SdkUsermediaScanResource","_Resource44","_proto167","_this464","SdkUsermediaResource","_Resource45","_proto168","multipart","project","projectId","SdkPricePlansResources","_Resources122","SdkPrintStickerTemplateResource","_Resource46","_proto170","SdkStylingtemplateResource","_Resource47","_proto171","_this473","_this474","SdkPrintPageTemplateResource","_Resource48","_proto172","_this476","SdkAuthSessionResources","_Resources123","_proto173","SdkRefreshAuthSessionResources","_Resources124","_this482","SdkAuthUserResources","_Resources125","SdkConfirmationAuthUserResources","_Resources126","SdkResetAuthUserResources","_Resources127","SdkPasswordAuthUserResources","_Resources128","SdkResources","_Resources129","_proto179","apikey","apiKeyId","appsPublished","assettype","assetTypeId","assetgraph","assetGraphId","batchId","billingCancelDowngrade","appsAccount","appAccountId","billingDowngradePlan","billingCancelSubscription","upgradePlanBillingPreview","billingSetupIntent","billingDetail","billingCurrentPeriod","careAccounts","customdomain","billingInvoice","billingUpgradePlan","job","jobId","invitation","invitationId","printJob","printJobId","support","qrcodelink","qrCodeLink","qrcodelogo","qrCodeLogoId","qrCode","qrCodeId","file","fileId","userroles","usermedia","mediaId","pricePlans","printStickerTemplate","printStickerTemplateId","stylingtemplate","stylingTemplateId","printPageTemplate","printPageTemplateId","authSession","refreshAuthSession","authUser","confirmationAuthUser","resetAuthUser","passwordAuthUser","NullSession","debugConfig","debugAuth","exp","getConfig","getUser","getSignedInUser","createUser","changePassword","signOut","Openscreen","_SdkResources","_config","cloudConfigName","_user","OS_DEBUG","process","env","log","toLowerCase","split","includes","warn","config","key","environment","checkSession","info","_exit","_result","c","repeat","email","password","res","expires","firstName","lastName","middleName","Number","Date","getTime","pathToConfig","thisAxios","baseURL","timeout","responseType","maxContentLength","maxBodyLength","maxRedirects","decompress","message","jar","CookieJar","wrapper","oldPassword","newPassword"],"mappings":"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"}
|