// Generated Beladed Kotlin API client 0.1.0-beta.1. // API version: 2026-07-11; operations: 283; contract: sha256:478f3385fbfb86f845f794fe3e71f4f6411059faab2ad4605087d4e219bc6377. // Source: reviewed public OpenAPI only. Unlisted operations are intentionally unavailable. package com.beladed import java.net.URI import java.net.URLEncoder import java.net.http.HttpClient import java.net.http.HttpRequest import java.net.http.HttpResponse import java.nio.charset.StandardCharsets data class Credentials(val publishableKey: String? = null, val secretKey: String? = null, val accessToken: String? = null, val sessionToken: String? = null) data class RequestOptions(val path: Map = emptyMap(), val query: Map = emptyMap(), val bodyJson: String? = null) class BeladedApiException(message: String, val status: Int? = null, val operationId: String? = null, val responseBody: String? = null) : RuntimeException(message) class BeladedClient( environment: String = "development", private val platform: String = "android", private val credentials: Credentials = Credentials(), private val httpClient: HttpClient = HttpClient.newHttpClient(), ) { private data class Operation(val operationId: String, val method: String, val path: String, val credentialType: String, val originRestricted: Boolean, val platforms: Set) private val baseUrl = baseUrls[environment] ?: throw BeladedApiException("Unknown environment $environment") private val executionContext = if (platform == "server") "server" else "client" init { if (platform !in supportedPlatforms) throw BeladedApiException("Unsupported Kotlin platform $platform") } private fun encode(value: String): String = URLEncoder.encode(value, StandardCharsets.UTF_8).replace("+", "%20") private fun authorize(operation: Operation, builder: HttpRequest.Builder) { if (executionContext == "client" && operation.credentialType in setOf("secret_key", "oauth_client")) throw BeladedApiException("Operation requires a server-side credential", operationId = operation.operationId) if (operation.credentialType == "publishable_key" && !operation.originRestricted) throw BeladedApiException("Operation is not approved for a publishable key", operationId = operation.operationId) if (operation.credentialType == "public") return val credential = when (operation.credentialType) { "publishable_key" -> credentials.publishableKey "secret_key" -> credentials.secretKey "oauth_client" -> credentials.accessToken "authenticated_session" -> credentials.sessionToken else -> null } if (credential.isNullOrBlank()) throw BeladedApiException("Missing " + operation.credentialType + " credential", operationId = operation.operationId) when (operation.credentialType) { "publishable_key" -> builder.header("X-Beladed-Public-Key", credential) "secret_key" -> builder.header("X-Beladed-API-Key", credential) else -> builder.header("Authorization", "Bearer $credential") } } fun request(operationId: String, options: RequestOptions = RequestOptions()): String { val operation = operations[operationId] ?: throw BeladedApiException("Unknown or unpublished operation $operationId", operationId = operationId) if (platform !in operation.platforms) throw BeladedApiException("Operation does not support platform $platform", operationId = operationId) var path = operation.path Regex("\\{([^}]+)}").findAll(path).forEach { match -> val name = match.groupValues[1] val value = options.path[name] ?: throw BeladedApiException("Missing path parameter $name", operationId = operationId) path = path.replace(match.value, encode(value)) } val query = options.query.entries.mapNotNull { (name, value) -> val normalized = name.lowercase().replace("_", "").replace("-", "") if (normalized in credentialQueryKeys) throw BeladedApiException("Credential query parameter $name is forbidden", operationId = operationId) value?.let { encode(name) + "=" + encode(it) } }.joinToString("&") val url = baseUrl + path + if (query.isEmpty()) "" else "?$query" val publisher = options.bodyJson?.let(HttpRequest.BodyPublishers::ofString) ?: HttpRequest.BodyPublishers.noBody() val builder = HttpRequest.newBuilder(URI.create(url)).header("Accept", "application/json").method(operation.method, publisher) if (options.bodyJson != null) builder.header("Content-Type", "application/json") authorize(operation, builder) val response = httpClient.send(builder.build(), HttpResponse.BodyHandlers.ofString()) if (response.statusCode() >= 400) throw BeladedApiException("Beladed request failed with HTTP " + response.statusCode(), response.statusCode(), operationId, response.body()) return response.body() } fun accountsAccountGeneralForgotPost(options: RequestOptions = RequestOptions()): String = request("accountsAccountGeneralForgotPost", options) fun accountsAccountGeneralGetAccountidGet(options: RequestOptions = RequestOptions()): String = request("accountsAccountGeneralGetAccountidGet", options) fun accountsAccountGeneralGetSessionsGet(options: RequestOptions = RequestOptions()): String = request("accountsAccountGeneralGetSessionsGet", options) fun accountsAccountGeneralLogoutDevicePost(options: RequestOptions = RequestOptions()): String = request("accountsAccountGeneralLogoutDevicePost", options) fun accountsAccountGeneralLogoutEverywherePost(options: RequestOptions = RequestOptions()): String = request("accountsAccountGeneralLogoutEverywherePost", options) fun accountsAccountGeneralLogoutPost(options: RequestOptions = RequestOptions()): String = request("accountsAccountGeneralLogoutPost", options) fun accountsAccountGeneralResetPut(options: RequestOptions = RequestOptions()): String = request("accountsAccountGeneralResetPut", options) fun accountsAccountGeneralSessionGet(options: RequestOptions = RequestOptions()): String = request("accountsAccountGeneralSessionGet", options) fun accountsAccountGeneralSetPasswordPost(options: RequestOptions = RequestOptions()): String = request("accountsAccountGeneralSetPasswordPost", options) fun accountsCreate(options: RequestOptions = RequestOptions()): String = request("accountsCreate", options) fun accountsListTypes(options: RequestOptions = RequestOptions()): String = request("accountsListTypes", options) fun accountsLogin(options: RequestOptions = RequestOptions()): String = request("accountsLogin", options) fun adsAdsAdvertisementCreatePost(options: RequestOptions = RequestOptions()): String = request("adsAdsAdvertisementCreatePost", options) fun adsAdsAdvertisementGetPost(options: RequestOptions = RequestOptions()): String = request("adsAdsAdvertisementGetPost", options) fun adsAdsAttributionAllGet(options: RequestOptions = RequestOptions()): String = request("adsAdsAttributionAllGet", options) fun adsAdsAttributionCreatePost(options: RequestOptions = RequestOptions()): String = request("adsAdsAttributionCreatePost", options) fun adsAdsAttributionDeleteAttributionidDelete(options: RequestOptions = RequestOptions()): String = request("adsAdsAttributionDeleteAttributionidDelete", options) fun adsAdsAttributionGetAttributionidGet(options: RequestOptions = RequestOptions()): String = request("adsAdsAttributionGetAttributionidGet", options) fun adsAdsAttributionUpdateAttributionidPut(options: RequestOptions = RequestOptions()): String = request("adsAdsAttributionUpdateAttributionidPut", options) fun adsAdsBiddingAllGet(options: RequestOptions = RequestOptions()): String = request("adsAdsBiddingAllGet", options) fun adsAdsBiddingCreatePost(options: RequestOptions = RequestOptions()): String = request("adsAdsBiddingCreatePost", options) fun adsAdsInteractionCreatePost(options: RequestOptions = RequestOptions()): String = request("adsAdsInteractionCreatePost", options) fun adsAdsInventoryAllGet(options: RequestOptions = RequestOptions()): String = request("adsAdsInventoryAllGet", options) fun adsAdsInventoryCreatePost(options: RequestOptions = RequestOptions()): String = request("adsAdsInventoryCreatePost", options) fun adsAdsPlacementAllGet(options: RequestOptions = RequestOptions()): String = request("adsAdsPlacementAllGet", options) fun adsAdsPlacementChoicePlacementidPost(options: RequestOptions = RequestOptions()): String = request("adsAdsPlacementChoicePlacementidPost", options) fun adsAdsPlacementInteractPlacementidPost(options: RequestOptions = RequestOptions()): String = request("adsAdsPlacementInteractPlacementidPost", options) fun adsAdsPlacementVotePlacementidPost(options: RequestOptions = RequestOptions()): String = request("adsAdsPlacementVotePlacementidPost", options) fun adsCreatePlacement(options: RequestOptions = RequestOptions()): String = request("adsCreatePlacement", options) fun embedsGet(options: RequestOptions = RequestOptions()): String = request("embedsGet", options) fun embedsList(options: RequestOptions = RequestOptions()): String = request("embedsList", options) fun embedsVoteEmbedCreatePost(options: RequestOptions = RequestOptions()): String = request("embedsVoteEmbedCreatePost", options) fun embedsVoteEmbedDeletePost(options: RequestOptions = RequestOptions()): String = request("embedsVoteEmbedDeletePost", options) fun embedsVoteEmbedUpdatePut(options: RequestOptions = RequestOptions()): String = request("embedsVoteEmbedUpdatePut", options) fun eventsCreate(options: RequestOptions = RequestOptions()): String = request("eventsCreate", options) fun eventsEventsGeneralDeletePost(options: RequestOptions = RequestOptions()): String = request("eventsEventsGeneralDeletePost", options) fun eventsGetPublic(options: RequestOptions = RequestOptions()): String = request("eventsGetPublic", options) fun eventsListPublic(options: RequestOptions = RequestOptions()): String = request("eventsListPublic", options) fun eventsUpdate(options: RequestOptions = RequestOptions()): String = request("eventsUpdate", options) fun livestreamCreate(options: RequestOptions = RequestOptions()): String = request("livestreamCreate", options) fun livestreamGet(options: RequestOptions = RequestOptions()): String = request("livestreamGet", options) fun livestreamVideoCategoryAllGet(options: RequestOptions = RequestOptions()): String = request("livestreamVideoCategoryAllGet", options) fun livestreamVideoCategoryCreatePost(options: RequestOptions = RequestOptions()): String = request("livestreamVideoCategoryCreatePost", options) fun livestreamVideoCategoryDeletePost(options: RequestOptions = RequestOptions()): String = request("livestreamVideoCategoryDeletePost", options) fun livestreamVideoCategoryGetGet(options: RequestOptions = RequestOptions()): String = request("livestreamVideoCategoryGetGet", options) fun livestreamVideoCategoryUpdatePut(options: RequestOptions = RequestOptions()): String = request("livestreamVideoCategoryUpdatePut", options) fun livestreamVideoChannelAllGet(options: RequestOptions = RequestOptions()): String = request("livestreamVideoChannelAllGet", options) fun livestreamVideoChannelCreatePost(options: RequestOptions = RequestOptions()): String = request("livestreamVideoChannelCreatePost", options) fun livestreamVideoChannelDeletePost(options: RequestOptions = RequestOptions()): String = request("livestreamVideoChannelDeletePost", options) fun livestreamVideoChannelGetGet(options: RequestOptions = RequestOptions()): String = request("livestreamVideoChannelGetGet", options) fun livestreamVideoChannelUpdatePut(options: RequestOptions = RequestOptions()): String = request("livestreamVideoChannelUpdatePut", options) fun livestreamVideoDetailsAllGet(options: RequestOptions = RequestOptions()): String = request("livestreamVideoDetailsAllGet", options) fun livestreamVideoDetailsCreatePost(options: RequestOptions = RequestOptions()): String = request("livestreamVideoDetailsCreatePost", options) fun livestreamVideoDetailsDeletePost(options: RequestOptions = RequestOptions()): String = request("livestreamVideoDetailsDeletePost", options) fun livestreamVideoDetailsGetGet(options: RequestOptions = RequestOptions()): String = request("livestreamVideoDetailsGetGet", options) fun livestreamVideoDetailsUpdatePut(options: RequestOptions = RequestOptions()): String = request("livestreamVideoDetailsUpdatePut", options) fun livestreamVideoEventCreatePost(options: RequestOptions = RequestOptions()): String = request("livestreamVideoEventCreatePost", options) fun livestreamVideoEventDeletePost(options: RequestOptions = RequestOptions()): String = request("livestreamVideoEventDeletePost", options) fun livestreamVideoEventUpdatePut(options: RequestOptions = RequestOptions()): String = request("livestreamVideoEventUpdatePut", options) fun livestreamVideoStaticAllGet(options: RequestOptions = RequestOptions()): String = request("livestreamVideoStaticAllGet", options) fun livestreamVideoStaticCreatePost(options: RequestOptions = RequestOptions()): String = request("livestreamVideoStaticCreatePost", options) fun livestreamVideoStaticDeletePost(options: RequestOptions = RequestOptions()): String = request("livestreamVideoStaticDeletePost", options) fun livestreamVideoStaticGetGet(options: RequestOptions = RequestOptions()): String = request("livestreamVideoStaticGetGet", options) fun livestreamVideoStaticUpdatePut(options: RequestOptions = RequestOptions()): String = request("livestreamVideoStaticUpdatePut", options) fun livestreamVideoStreamAllGet(options: RequestOptions = RequestOptions()): String = request("livestreamVideoStreamAllGet", options) fun livestreamVideoStreamCreateclipPost(options: RequestOptions = RequestOptions()): String = request("livestreamVideoStreamCreateclipPost", options) fun livestreamVideoStreamDeletePost(options: RequestOptions = RequestOptions()): String = request("livestreamVideoStreamDeletePost", options) fun livestreamVideoStreamGetanalyticsPost(options: RequestOptions = RequestOptions()): String = request("livestreamVideoStreamGetanalyticsPost", options) fun livestreamVideoStreamGetembedcodePost(options: RequestOptions = RequestOptions()): String = request("livestreamVideoStreamGetembedcodePost", options) fun livestreamVideoStreamGetstatusPost(options: RequestOptions = RequestOptions()): String = request("livestreamVideoStreamGetstatusPost", options) fun livestreamVideoStreamUpdatePut(options: RequestOptions = RequestOptions()): String = request("livestreamVideoStreamUpdatePut", options) fun livestreamVideoSubcategoryAllGet(options: RequestOptions = RequestOptions()): String = request("livestreamVideoSubcategoryAllGet", options) fun livestreamVideoSubcategoryCreatePost(options: RequestOptions = RequestOptions()): String = request("livestreamVideoSubcategoryCreatePost", options) fun livestreamVideoSubcategoryDeletePost(options: RequestOptions = RequestOptions()): String = request("livestreamVideoSubcategoryDeletePost", options) fun livestreamVideoSubcategoryGetGet(options: RequestOptions = RequestOptions()): String = request("livestreamVideoSubcategoryGetGet", options) fun livestreamVideoSubcategoryUpdatePut(options: RequestOptions = RequestOptions()): String = request("livestreamVideoSubcategoryUpdatePut", options) fun loyaltyCreateItem(options: RequestOptions = RequestOptions()): String = request("loyaltyCreateItem", options) fun loyaltyIncentiveLoyaltyAllGet(options: RequestOptions = RequestOptions()): String = request("loyaltyIncentiveLoyaltyAllGet", options) fun loyaltyIncentiveLoyaltyDeletePost(options: RequestOptions = RequestOptions()): String = request("loyaltyIncentiveLoyaltyDeletePost", options) fun loyaltyIncentiveLoyaltyGetGet(options: RequestOptions = RequestOptions()): String = request("loyaltyIncentiveLoyaltyGetGet", options) fun loyaltyIncentiveLoyaltyUpdatePut(options: RequestOptions = RequestOptions()): String = request("loyaltyIncentiveLoyaltyUpdatePut", options) fun loyaltyIncentivePromotionAllGet(options: RequestOptions = RequestOptions()): String = request("loyaltyIncentivePromotionAllGet", options) fun loyaltyIncentivePromotionCreatePost(options: RequestOptions = RequestOptions()): String = request("loyaltyIncentivePromotionCreatePost", options) fun loyaltyIncentivePromotionDeletePost(options: RequestOptions = RequestOptions()): String = request("loyaltyIncentivePromotionDeletePost", options) fun loyaltyIncentivePromotionGetGet(options: RequestOptions = RequestOptions()): String = request("loyaltyIncentivePromotionGetGet", options) fun loyaltyIncentivePromotionUpdatePut(options: RequestOptions = RequestOptions()): String = request("loyaltyIncentivePromotionUpdatePut", options) fun loyaltyIncentiveRewardAllGet(options: RequestOptions = RequestOptions()): String = request("loyaltyIncentiveRewardAllGet", options) fun loyaltyIncentiveRewardCreatePost(options: RequestOptions = RequestOptions()): String = request("loyaltyIncentiveRewardCreatePost", options) fun loyaltyIncentiveRewardDeletePost(options: RequestOptions = RequestOptions()): String = request("loyaltyIncentiveRewardDeletePost", options) fun loyaltyIncentiveRewardGetGet(options: RequestOptions = RequestOptions()): String = request("loyaltyIncentiveRewardGetGet", options) fun loyaltyIncentiveRewardUpdatePut(options: RequestOptions = RequestOptions()): String = request("loyaltyIncentiveRewardUpdatePut", options) fun marketingCreateCampaign(options: RequestOptions = RequestOptions()): String = request("marketingCreateCampaign", options) fun marketingMarketingAutomationCreatePost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingAutomationCreatePost", options) fun marketingMarketingAutomationDeletePost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingAutomationDeletePost", options) fun marketingMarketingAutomationGetPost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingAutomationGetPost", options) fun marketingMarketingAutomationUpdatePost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingAutomationUpdatePost", options) fun marketingMarketingCampaignAllPost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingCampaignAllPost", options) fun marketingMarketingCampaignGetPost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingCampaignGetPost", options) fun marketingMarketingContactAllPost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingContactAllPost", options) fun marketingMarketingContactCreatePost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingContactCreatePost", options) fun marketingMarketingContactDeletePost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingContactDeletePost", options) fun marketingMarketingContactGetPost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingContactGetPost", options) fun marketingMarketingContactUpdatePost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingContactUpdatePost", options) fun marketingMarketingEmailsequenceCreatePost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingEmailsequenceCreatePost", options) fun marketingMarketingEmailsequenceDeletePost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingEmailsequenceDeletePost", options) fun marketingMarketingEmailsequenceGetPost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingEmailsequenceGetPost", options) fun marketingMarketingIntegrationAllPost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingIntegrationAllPost", options) fun marketingMarketingIntegrationCreatePost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingIntegrationCreatePost", options) fun marketingMarketingIntegrationDeletePost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingIntegrationDeletePost", options) fun marketingMarketingIntegrationGetPost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingIntegrationGetPost", options) fun marketingMarketingIntegrationUpdatePost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingIntegrationUpdatePost", options) fun marketingMarketingLeadscoreGetPost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingLeadscoreGetPost", options) fun marketingMarketingLeadscoreUpdatePost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingLeadscoreUpdatePost", options) fun marketingMarketingSegmentAllPost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingSegmentAllPost", options) fun marketingMarketingSegmentCreatePost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingSegmentCreatePost", options) fun marketingMarketingSegmentDeletePost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingSegmentDeletePost", options) fun marketingMarketingSegmentGetPost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingSegmentGetPost", options) fun marketingMarketingSegmentUpdatePost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingSegmentUpdatePost", options) fun marketingMarketingTemplateAllPost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingTemplateAllPost", options) fun marketingMarketingTemplateCreatePost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingTemplateCreatePost", options) fun marketingMarketingTemplateDeletePost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingTemplateDeletePost", options) fun marketingMarketingTemplateGetPost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingTemplateGetPost", options) fun marketingMarketingTemplateUpdatePost(options: RequestOptions = RequestOptions()): String = request("marketingMarketingTemplateUpdatePost", options) fun pagesCreate(options: RequestOptions = RequestOptions()): String = request("pagesCreate", options) fun pagesCreateLead(options: RequestOptions = RequestOptions()): String = request("pagesCreateLead", options) fun pagesGetPublic(options: RequestOptions = RequestOptions()): String = request("pagesGetPublic", options) fun pagesListPublic(options: RequestOptions = RequestOptions()): String = request("pagesListPublic", options) fun pagesPagesGeneralAnalyticsGet(options: RequestOptions = RequestOptions()): String = request("pagesPagesGeneralAnalyticsGet", options) fun pagesPagesGeneralDeleteDelete(options: RequestOptions = RequestOptions()): String = request("pagesPagesGeneralDeleteDelete", options) fun pagesPagesGeneralStatsGet(options: RequestOptions = RequestOptions()): String = request("pagesPagesGeneralStatsGet", options) fun pagesPagesGeneralUpdatePut(options: RequestOptions = RequestOptions()): String = request("pagesPagesGeneralUpdatePut", options) fun pagesPagesLeadsAllGet(options: RequestOptions = RequestOptions()): String = request("pagesPagesLeadsAllGet", options) fun pagesPagesLeadsDeleteDelete(options: RequestOptions = RequestOptions()): String = request("pagesPagesLeadsDeleteDelete", options) fun pagesPagesLeadsGetGet(options: RequestOptions = RequestOptions()): String = request("pagesPagesLeadsGetGet", options) fun pagesPagesLeadsUpdatePut(options: RequestOptions = RequestOptions()): String = request("pagesPagesLeadsUpdatePut", options) fun paymentsCreateCustomer(options: RequestOptions = RequestOptions()): String = request("paymentsCreateCustomer", options) fun paymentsCreateLink(options: RequestOptions = RequestOptions()): String = request("paymentsCreateLink", options) fun paymentsCreateSubscription(options: RequestOptions = RequestOptions()): String = request("paymentsCreateSubscription", options) fun paymentsGetSubscription(options: RequestOptions = RequestOptions()): String = request("paymentsGetSubscription", options) fun paymentsGetTransaction(options: RequestOptions = RequestOptions()): String = request("paymentsGetTransaction", options) fun paymentsPaySShortidGet(options: RequestOptions = RequestOptions()): String = request("paymentsPaySShortidGet", options) fun paymentsPayShortidGet(options: RequestOptions = RequestOptions()): String = request("paymentsPayShortidGet", options) fun paymentsPaymentChargeAllPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentChargeAllPost", options) fun paymentsPaymentChargeCreatePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentChargeCreatePost", options) fun paymentsPaymentChargeDeletePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentChargeDeletePost", options) fun paymentsPaymentChargeGetPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentChargeGetPost", options) fun paymentsPaymentChargeRefundPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentChargeRefundPost", options) fun paymentsPaymentChargeReversePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentChargeReversePost", options) fun paymentsPaymentChargeUpdatePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentChargeUpdatePost", options) fun paymentsPaymentChargeUpdatePut(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentChargeUpdatePut", options) fun paymentsPaymentCustomerAllPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentCustomerAllPost", options) fun paymentsPaymentCustomerDeletePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentCustomerDeletePost", options) fun paymentsPaymentCustomerGetPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentCustomerGetPost", options) fun paymentsPaymentCustomerSearchPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentCustomerSearchPost", options) fun paymentsPaymentCustomerUpdatePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentCustomerUpdatePost", options) fun paymentsPaymentInvoiceChargePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentInvoiceChargePost", options) fun paymentsPaymentInvoiceCreatePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentInvoiceCreatePost", options) fun paymentsPaymentInvoiceDeletePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentInvoiceDeletePost", options) fun paymentsPaymentInvoiceGetGet(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentInvoiceGetGet", options) fun paymentsPaymentInvoiceGetallGet(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentInvoiceGetallGet", options) fun paymentsPaymentInvoiceResendPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentInvoiceResendPost", options) fun paymentsPaymentInvoiceSearchGet(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentInvoiceSearchGet", options) fun paymentsPaymentInvoiceSearchbycustomerGet(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentInvoiceSearchbycustomerGet", options) fun paymentsPaymentInvoiceSearchbydaterangeGet(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentInvoiceSearchbydaterangeGet", options) fun paymentsPaymentInvoiceSearchbystatusGet(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentInvoiceSearchbystatusGet", options) fun paymentsPaymentInvoiceSendPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentInvoiceSendPost", options) fun paymentsPaymentInvoiceUpdatePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentInvoiceUpdatePost", options) fun paymentsPaymentLinkAllPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentLinkAllPost", options) fun paymentsPaymentLinkGetPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentLinkGetPost", options) fun paymentsPaymentLinkUpdatePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentLinkUpdatePost", options) fun paymentsPaymentPaymentlinkClonePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentPaymentlinkClonePost", options) fun paymentsPaymentPaymentlinkDeletePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentPaymentlinkDeletePost", options) fun paymentsPaymentPaymentlinkGenerateqrPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentPaymentlinkGenerateqrPost", options) fun paymentsPaymentPaymentlinkGetdonorsPaymentlinkidGet(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentPaymentlinkGetdonorsPaymentlinkidGet", options) fun paymentsPaymentPaymentlinkGetgoalprogressPaymentlinkidGet(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentPaymentlinkGetgoalprogressPaymentlinkidGet", options) fun paymentsPaymentPaymentlinkGetpaymentsPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentPaymentlinkGetpaymentsPost", options) fun paymentsPaymentPaymentlinkGetsubscriptionsGet(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentPaymentlinkGetsubscriptionsGet", options) fun paymentsPaymentPaymentlinkSharePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentPaymentlinkSharePost", options) fun paymentsPaymentPromotionAllGet(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentPromotionAllGet", options) fun paymentsPaymentPromotionCreatePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentPromotionCreatePost", options) fun paymentsPaymentPromotionDeleteDelete(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentPromotionDeleteDelete", options) fun paymentsPaymentPromotionGetGet(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentPromotionGetGet", options) fun paymentsPaymentPromotionUpdatePut(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentPromotionUpdatePut", options) fun paymentsPaymentReceiptCreatePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentReceiptCreatePost", options) fun paymentsPaymentReceiptDownloadPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentReceiptDownloadPost", options) fun paymentsPaymentReceiptFormatPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentReceiptFormatPost", options) fun paymentsPaymentReceiptGetPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentReceiptGetPost", options) fun paymentsPaymentReceiptGetallPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentReceiptGetallPost", options) fun paymentsPaymentReceiptResendPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentReceiptResendPost", options) fun paymentsPaymentReceiptSearchPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentReceiptSearchPost", options) fun paymentsPaymentReceiptSendPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentReceiptSendPost", options) fun paymentsPaymentRefundAllPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentRefundAllPost", options) fun paymentsPaymentRefundCreatePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentRefundCreatePost", options) fun paymentsPaymentRefundDeletePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentRefundDeletePost", options) fun paymentsPaymentRefundFullrefundPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentRefundFullrefundPost", options) fun paymentsPaymentRefundGetPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentRefundGetPost", options) fun paymentsPaymentRefundPartialrefundPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentRefundPartialrefundPost", options) fun paymentsPaymentRefundProcessrefundPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentRefundProcessrefundPost", options) fun paymentsPaymentRefundSearchPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentRefundSearchPost", options) fun paymentsPaymentRefundSearchbychargePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentRefundSearchbychargePost", options) fun paymentsPaymentRefundSearchbycustomerPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentRefundSearchbycustomerPost", options) fun paymentsPaymentRefundSearchbydaterangePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentRefundSearchbydaterangePost", options) fun paymentsPaymentRefundSearchbystatusPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentRefundSearchbystatusPost", options) fun paymentsPaymentRefundUpdatePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentRefundUpdatePost", options) fun paymentsPaymentSubscriptionAllPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionAllPost", options) fun paymentsPaymentSubscriptionCancelPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionCancelPost", options) fun paymentsPaymentSubscriptionChangeplanPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionChangeplanPost", options) fun paymentsPaymentSubscriptionDeleteDelete(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionDeleteDelete", options) fun paymentsPaymentSubscriptionDeletePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionDeletePost", options) fun paymentsPaymentSubscriptionEndtrialPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionEndtrialPost", options) fun paymentsPaymentSubscriptionGetGet(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionGetGet", options) fun paymentsPaymentSubscriptionGetallGet(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionGetallGet", options) fun paymentsPaymentSubscriptionGethistoryGet(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionGethistoryGet", options) fun paymentsPaymentSubscriptionGetinvoicesGet(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionGetinvoicesGet", options) fun paymentsPaymentSubscriptionGetnextbillingGet(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionGetnextbillingGet", options) fun paymentsPaymentSubscriptionGetstatusGet(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionGetstatusGet", options) fun paymentsPaymentSubscriptionGetusageGet(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionGetusageGet", options) fun paymentsPaymentSubscriptionPausePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionPausePost", options) fun paymentsPaymentSubscriptionReactivatePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionReactivatePost", options) fun paymentsPaymentSubscriptionResumePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionResumePost", options) fun paymentsPaymentSubscriptionSearchGet(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionSearchGet", options) fun paymentsPaymentSubscriptionSearchbycustomerGet(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionSearchbycustomerGet", options) fun paymentsPaymentSubscriptionSearchbyplanGet(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionSearchbyplanGet", options) fun paymentsPaymentSubscriptionSearchbystatusGet(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionSearchbystatusGet", options) fun paymentsPaymentSubscriptionStarttrialPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionStarttrialPost", options) fun paymentsPaymentSubscriptionUpdatePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionUpdatePost", options) fun paymentsPaymentSubscriptionUpdatePut(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionUpdatePut", options) fun paymentsPaymentSubscriptionUpdatepaymentmethodPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionUpdatepaymentmethodPost", options) fun paymentsPaymentSubscriptionplanAllPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionplanAllPost", options) fun paymentsPaymentSubscriptionplanCalculatepricePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionplanCalculatepricePost", options) fun paymentsPaymentSubscriptionplanCreatePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionplanCreatePost", options) fun paymentsPaymentSubscriptionplanDeleteDelete(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionplanDeleteDelete", options) fun paymentsPaymentSubscriptionplanDeletePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionplanDeletePost", options) fun paymentsPaymentSubscriptionplanGetGet(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionplanGetGet", options) fun paymentsPaymentSubscriptionplanGetPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionplanGetPost", options) fun paymentsPaymentSubscriptionplanGetallGet(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionplanGetallGet", options) fun paymentsPaymentSubscriptionplanGetfeaturesGet(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionplanGetfeaturesGet", options) fun paymentsPaymentSubscriptionplanUpdatePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionplanUpdatePost", options) fun paymentsPaymentSubscriptionplanUpdatePut(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionplanUpdatePut", options) fun paymentsPaymentSubscriptionplanUpdatefeaturesPut(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentSubscriptionplanUpdatefeaturesPut", options) fun paymentsPaymentTransactionCalculatefeePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentTransactionCalculatefeePost", options) fun paymentsPaymentTransactionCheckstatusPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentTransactionCheckstatusPost", options) fun paymentsPaymentTransactionCreatePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentTransactionCreatePost", options) fun paymentsPaymentTransactionDeletePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentTransactionDeletePost", options) fun paymentsPaymentTransactionGetallPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentTransactionGetallPost", options) fun paymentsPaymentTransactionGetdetailsPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentTransactionGetdetailsPost", options) fun paymentsPaymentTransactionGeteventsPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentTransactionGeteventsPost", options) fun paymentsPaymentTransactionHistoryPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentTransactionHistoryPost", options) fun paymentsPaymentTransactionRefundPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentTransactionRefundPost", options) fun paymentsPaymentTransactionUpdatePost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentTransactionUpdatePost", options) fun paymentsPaymentTransactionVoidPost(options: RequestOptions = RequestOptions()): String = request("paymentsPaymentTransactionVoidPost", options) fun placesCreate(options: RequestOptions = RequestOptions()): String = request("placesCreate", options) fun placesGetPublic(options: RequestOptions = RequestOptions()): String = request("placesGetPublic", options) fun placesListPublic(options: RequestOptions = RequestOptions()): String = request("placesListPublic", options) fun placesPlacesGeneralDeletePost(options: RequestOptions = RequestOptions()): String = request("placesPlacesGeneralDeletePost", options) fun placesUpdate(options: RequestOptions = RequestOptions()): String = request("placesUpdate", options) fun pollsCastVote(options: RequestOptions = RequestOptions()): String = request("pollsCastVote", options) fun pollsVoteCastGetPost(options: RequestOptions = RequestOptions()): String = request("pollsVoteCastGetPost", options) fun pollsVoteCastGetallPost(options: RequestOptions = RequestOptions()): String = request("pollsVoteCastGetallPost", options) fun sponsorsCreate(options: RequestOptions = RequestOptions()): String = request("sponsorsCreate", options) fun sponsorsGetPublic(options: RequestOptions = RequestOptions()): String = request("sponsorsGetPublic", options) fun sponsorsSponsorGeneralAllGet(options: RequestOptions = RequestOptions()): String = request("sponsorsSponsorGeneralAllGet", options) fun sponsorsSponsorGeneralDeletePost(options: RequestOptions = RequestOptions()): String = request("sponsorsSponsorGeneralDeletePost", options) fun sponsorsSponsorGeneralUpdatePut(options: RequestOptions = RequestOptions()): String = request("sponsorsSponsorGeneralUpdatePut", options) fun teamsCreate(options: RequestOptions = RequestOptions()): String = request("teamsCreate", options) fun teamsTeamCategoryAllGet(options: RequestOptions = RequestOptions()): String = request("teamsTeamCategoryAllGet", options) fun teamsTeamCategoryCreatePost(options: RequestOptions = RequestOptions()): String = request("teamsTeamCategoryCreatePost", options) fun teamsTeamCategoryDeletePost(options: RequestOptions = RequestOptions()): String = request("teamsTeamCategoryDeletePost", options) fun teamsTeamCategoryGetGet(options: RequestOptions = RequestOptions()): String = request("teamsTeamCategoryGetGet", options) fun teamsTeamCategoryUpdatePut(options: RequestOptions = RequestOptions()): String = request("teamsTeamCategoryUpdatePut", options) fun teamsTeamGeneralAllGet(options: RequestOptions = RequestOptions()): String = request("teamsTeamGeneralAllGet", options) fun teamsTeamGeneralDeletePost(options: RequestOptions = RequestOptions()): String = request("teamsTeamGeneralDeletePost", options) fun teamsTeamGeneralGetGet(options: RequestOptions = RequestOptions()): String = request("teamsTeamGeneralGetGet", options) fun teamsTeamGeneralUpdatePut(options: RequestOptions = RequestOptions()): String = request("teamsTeamGeneralUpdatePut", options) fun teamsTeamSubcategoryAllGet(options: RequestOptions = RequestOptions()): String = request("teamsTeamSubcategoryAllGet", options) fun teamsTeamSubcategoryCreatePost(options: RequestOptions = RequestOptions()): String = request("teamsTeamSubcategoryCreatePost", options) fun teamsTeamSubcategoryDeletePost(options: RequestOptions = RequestOptions()): String = request("teamsTeamSubcategoryDeletePost", options) fun teamsTeamSubcategoryGetGet(options: RequestOptions = RequestOptions()): String = request("teamsTeamSubcategoryGetGet", options) fun teamsTeamSubcategoryUpdatePut(options: RequestOptions = RequestOptions()): String = request("teamsTeamSubcategoryUpdatePut", options) fun vendorsCreate(options: RequestOptions = RequestOptions()): String = request("vendorsCreate", options) fun vendorsGetPublic(options: RequestOptions = RequestOptions()): String = request("vendorsGetPublic", options) fun vendorsVendorGeneralAllGet(options: RequestOptions = RequestOptions()): String = request("vendorsVendorGeneralAllGet", options) fun vendorsVendorGeneralUpdatePut(options: RequestOptions = RequestOptions()): String = request("vendorsVendorGeneralUpdatePut", options) private companion object { val baseUrls = mapOf("development" to "https://api.beladed.dev", "production" to "https://api.beladed.com") val supportedPlatforms = setOf("server", "android") val credentialQueryKeys = setOf("apikey", "publickey", "secretkey", "accesstoken", "sessiontoken", "clientsecret") val operations = mapOf( "accountsAccountGeneralForgotPost" to Operation("accountsAccountGeneralForgotPost", "POST", "/api/account/general/forgot", "public", false, setOf("server", "web", "browser-extension", "ios", "android", "react-native")), "accountsAccountGeneralGetAccountidGet" to Operation("accountsAccountGeneralGetAccountidGet", "GET", "/api/account/general/get/{accountId}", "authenticated_session", false, setOf("server", "web", "browser-extension", "ios", "android", "react-native")), "accountsAccountGeneralGetSessionsGet" to Operation("accountsAccountGeneralGetSessionsGet", "GET", "/api/account/general/get-sessions", "authenticated_session", false, setOf("server", "web", "browser-extension", "ios", "android", "react-native")), "accountsAccountGeneralLogoutDevicePost" to Operation("accountsAccountGeneralLogoutDevicePost", "POST", "/api/account/general/logout-device", "authenticated_session", false, setOf("server", "web", "browser-extension", "ios", "android", "react-native")), "accountsAccountGeneralLogoutEverywherePost" to Operation("accountsAccountGeneralLogoutEverywherePost", "POST", "/api/account/general/logout-everywhere", "authenticated_session", false, setOf("server", "web", "browser-extension", "ios", "android", "react-native")), "accountsAccountGeneralLogoutPost" to Operation("accountsAccountGeneralLogoutPost", "POST", "/api/account/general/logout", "authenticated_session", false, setOf("server", "web", "browser-extension", "ios", "android", "react-native")), "accountsAccountGeneralResetPut" to Operation("accountsAccountGeneralResetPut", "PUT", "/api/account/general/reset", "authenticated_session", false, setOf("server", "web", "browser-extension", "ios", "android", "react-native")), "accountsAccountGeneralSessionGet" to Operation("accountsAccountGeneralSessionGet", "GET", "/api/account/general/session", "authenticated_session", false, setOf("server", "web", "browser-extension", "ios", "android", "react-native")), "accountsAccountGeneralSetPasswordPost" to Operation("accountsAccountGeneralSetPasswordPost", "POST", "/api/account/general/set-password", "authenticated_session", false, setOf("server", "web", "browser-extension", "ios", "android", "react-native")), "accountsCreate" to Operation("accountsCreate", "POST", "/api/account/general/create", "public", false, setOf("server", "web", "browser-extension", "ios", "android", "react-native")), "accountsListTypes" to Operation("accountsListTypes", "GET", "/api/account/types/get", "public", false, setOf("server", "web", "browser-extension", "ios", "android", "react-native")), "accountsLogin" to Operation("accountsLogin", "POST", "/api/account/general/login", "public", false, setOf("server", "web", "browser-extension", "ios", "android", "react-native")), "adsAdsAdvertisementCreatePost" to Operation("adsAdsAdvertisementCreatePost", "POST", "/api/ads/advertisement/create", "secret_key", false, setOf("server")), "adsAdsAdvertisementGetPost" to Operation("adsAdsAdvertisementGetPost", "POST", "/api/ads/advertisement/get", "secret_key", false, setOf("server")), "adsAdsAttributionAllGet" to Operation("adsAdsAttributionAllGet", "GET", "/api/ads/attribution/all", "secret_key", false, setOf("server")), "adsAdsAttributionCreatePost" to Operation("adsAdsAttributionCreatePost", "POST", "/api/ads/attribution/create", "secret_key", false, setOf("server")), "adsAdsAttributionDeleteAttributionidDelete" to Operation("adsAdsAttributionDeleteAttributionidDelete", "DELETE", "/api/ads/attribution/delete/{attributionId}", "secret_key", false, setOf("server")), "adsAdsAttributionGetAttributionidGet" to Operation("adsAdsAttributionGetAttributionidGet", "GET", "/api/ads/attribution/get/{attributionId}", "secret_key", false, setOf("server")), "adsAdsAttributionUpdateAttributionidPut" to Operation("adsAdsAttributionUpdateAttributionidPut", "PUT", "/api/ads/attribution/update/{attributionId}", "secret_key", false, setOf("server")), "adsAdsBiddingAllGet" to Operation("adsAdsBiddingAllGet", "GET", "/api/ads/bidding/all", "secret_key", false, setOf("server")), "adsAdsBiddingCreatePost" to Operation("adsAdsBiddingCreatePost", "POST", "/api/ads/bidding/create", "secret_key", false, setOf("server")), "adsAdsInteractionCreatePost" to Operation("adsAdsInteractionCreatePost", "POST", "/api/ads/interaction/create", "secret_key", false, setOf("server")), "adsAdsInventoryAllGet" to Operation("adsAdsInventoryAllGet", "GET", "/api/ads/inventory/all", "secret_key", false, setOf("server")), "adsAdsInventoryCreatePost" to Operation("adsAdsInventoryCreatePost", "POST", "/api/ads/inventory/create", "secret_key", false, setOf("server")), "adsAdsPlacementAllGet" to Operation("adsAdsPlacementAllGet", "GET", "/api/ads/placement/all", "secret_key", false, setOf("server")), "adsAdsPlacementChoicePlacementidPost" to Operation("adsAdsPlacementChoicePlacementidPost", "POST", "/api/ads/placement/choice/{placementId}", "public", false, setOf("server", "web", "browser-extension")), "adsAdsPlacementInteractPlacementidPost" to Operation("adsAdsPlacementInteractPlacementidPost", "POST", "/api/ads/placement/interact/{placementId}", "public", false, setOf("server", "web", "browser-extension")), "adsAdsPlacementVotePlacementidPost" to Operation("adsAdsPlacementVotePlacementidPost", "POST", "/api/ads/placement/vote/{placementId}", "public", false, setOf("server", "web", "browser-extension")), "adsCreatePlacement" to Operation("adsCreatePlacement", "POST", "/api/ads/placement/create", "secret_key", false, setOf("server")), "embedsGet" to Operation("embedsGet", "POST", "/api/vote/embed/get", "publishable_key", true, setOf("server", "web", "browser-extension")), "embedsList" to Operation("embedsList", "POST", "/api/vote/embed/all", "publishable_key", true, setOf("server", "web", "browser-extension")), "embedsVoteEmbedCreatePost" to Operation("embedsVoteEmbedCreatePost", "POST", "/api/vote/embed/create", "secret_key", false, setOf("server")), "embedsVoteEmbedDeletePost" to Operation("embedsVoteEmbedDeletePost", "POST", "/api/vote/embed/delete", "secret_key", false, setOf("server")), "embedsVoteEmbedUpdatePut" to Operation("embedsVoteEmbedUpdatePut", "PUT", "/api/vote/embed/update", "secret_key", false, setOf("server")), "eventsCreate" to Operation("eventsCreate", "POST", "/api/events/general/create", "secret_key", false, setOf("server")), "eventsEventsGeneralDeletePost" to Operation("eventsEventsGeneralDeletePost", "POST", "/api/events/general/delete", "secret_key", false, setOf("server")), "eventsGetPublic" to Operation("eventsGetPublic", "GET", "/api/events/general/get", "public", false, setOf("server", "web", "browser-extension", "ios", "android", "react-native")), "eventsListPublic" to Operation("eventsListPublic", "GET", "/api/events/general/all", "public", false, setOf("server", "web", "browser-extension", "ios", "android", "react-native")), "eventsUpdate" to Operation("eventsUpdate", "PUT", "/api/events/general/update", "secret_key", false, setOf("server")), "livestreamCreate" to Operation("livestreamCreate", "POST", "/api/video/stream/create", "secret_key", false, setOf("server")), "livestreamGet" to Operation("livestreamGet", "GET", "/api/video/stream/get", "secret_key", false, setOf("server")), "livestreamVideoCategoryAllGet" to Operation("livestreamVideoCategoryAllGet", "GET", "/api/video/category/all", "secret_key", false, setOf("server")), "livestreamVideoCategoryCreatePost" to Operation("livestreamVideoCategoryCreatePost", "POST", "/api/video/category/create", "secret_key", false, setOf("server")), "livestreamVideoCategoryDeletePost" to Operation("livestreamVideoCategoryDeletePost", "POST", "/api/video/category/delete", "secret_key", false, setOf("server")), "livestreamVideoCategoryGetGet" to Operation("livestreamVideoCategoryGetGet", "GET", "/api/video/category/get", "secret_key", false, setOf("server")), "livestreamVideoCategoryUpdatePut" to Operation("livestreamVideoCategoryUpdatePut", "PUT", "/api/video/category/update", "secret_key", false, setOf("server")), "livestreamVideoChannelAllGet" to Operation("livestreamVideoChannelAllGet", "GET", "/api/video/channel/all", "secret_key", false, setOf("server")), "livestreamVideoChannelCreatePost" to Operation("livestreamVideoChannelCreatePost", "POST", "/api/video/channel/create", "secret_key", false, setOf("server")), "livestreamVideoChannelDeletePost" to Operation("livestreamVideoChannelDeletePost", "POST", "/api/video/channel/delete", "secret_key", false, setOf("server")), "livestreamVideoChannelGetGet" to Operation("livestreamVideoChannelGetGet", "GET", "/api/video/channel/get", "secret_key", false, setOf("server")), "livestreamVideoChannelUpdatePut" to Operation("livestreamVideoChannelUpdatePut", "PUT", "/api/video/channel/update", "secret_key", false, setOf("server")), "livestreamVideoDetailsAllGet" to Operation("livestreamVideoDetailsAllGet", "GET", "/api/video/details/all", "secret_key", false, setOf("server")), "livestreamVideoDetailsCreatePost" to Operation("livestreamVideoDetailsCreatePost", "POST", "/api/video/details/create", "secret_key", false, setOf("server")), "livestreamVideoDetailsDeletePost" to Operation("livestreamVideoDetailsDeletePost", "POST", "/api/video/details/delete", "secret_key", false, setOf("server")), "livestreamVideoDetailsGetGet" to Operation("livestreamVideoDetailsGetGet", "GET", "/api/video/details/get", "secret_key", false, setOf("server")), "livestreamVideoDetailsUpdatePut" to Operation("livestreamVideoDetailsUpdatePut", "PUT", "/api/video/details/update", "secret_key", false, setOf("server")), "livestreamVideoEventCreatePost" to Operation("livestreamVideoEventCreatePost", "POST", "/api/video/event/create", "secret_key", false, setOf("server")), "livestreamVideoEventDeletePost" to Operation("livestreamVideoEventDeletePost", "POST", "/api/video/event/delete", "secret_key", false, setOf("server")), "livestreamVideoEventUpdatePut" to Operation("livestreamVideoEventUpdatePut", "PUT", "/api/video/event/update", "secret_key", false, setOf("server")), "livestreamVideoStaticAllGet" to Operation("livestreamVideoStaticAllGet", "GET", "/api/video/static/all", "secret_key", false, setOf("server")), "livestreamVideoStaticCreatePost" to Operation("livestreamVideoStaticCreatePost", "POST", "/api/video/static/create", "secret_key", false, setOf("server")), "livestreamVideoStaticDeletePost" to Operation("livestreamVideoStaticDeletePost", "POST", "/api/video/static/delete", "secret_key", false, setOf("server")), "livestreamVideoStaticGetGet" to Operation("livestreamVideoStaticGetGet", "GET", "/api/video/static/get", "secret_key", false, setOf("server")), "livestreamVideoStaticUpdatePut" to Operation("livestreamVideoStaticUpdatePut", "PUT", "/api/video/static/update", "secret_key", false, setOf("server")), "livestreamVideoStreamAllGet" to Operation("livestreamVideoStreamAllGet", "GET", "/api/video/stream/all", "secret_key", false, setOf("server")), "livestreamVideoStreamCreateclipPost" to Operation("livestreamVideoStreamCreateclipPost", "POST", "/api/video/stream/createClip", "secret_key", false, setOf("server")), "livestreamVideoStreamDeletePost" to Operation("livestreamVideoStreamDeletePost", "POST", "/api/video/stream/delete", "secret_key", false, setOf("server")), "livestreamVideoStreamGetanalyticsPost" to Operation("livestreamVideoStreamGetanalyticsPost", "POST", "/api/video/stream/getAnalytics", "secret_key", false, setOf("server")), "livestreamVideoStreamGetembedcodePost" to Operation("livestreamVideoStreamGetembedcodePost", "POST", "/api/video/stream/getEmbedCode", "secret_key", false, setOf("server")), "livestreamVideoStreamGetstatusPost" to Operation("livestreamVideoStreamGetstatusPost", "POST", "/api/video/stream/getStatus", "secret_key", false, setOf("server")), "livestreamVideoStreamUpdatePut" to Operation("livestreamVideoStreamUpdatePut", "PUT", "/api/video/stream/update", "secret_key", false, setOf("server")), "livestreamVideoSubcategoryAllGet" to Operation("livestreamVideoSubcategoryAllGet", "GET", "/api/video/subcategory/all", "secret_key", false, setOf("server")), "livestreamVideoSubcategoryCreatePost" to Operation("livestreamVideoSubcategoryCreatePost", "POST", "/api/video/subcategory/create", "secret_key", false, setOf("server")), "livestreamVideoSubcategoryDeletePost" to Operation("livestreamVideoSubcategoryDeletePost", "POST", "/api/video/subcategory/delete", "secret_key", false, setOf("server")), "livestreamVideoSubcategoryGetGet" to Operation("livestreamVideoSubcategoryGetGet", "GET", "/api/video/subcategory/get", "secret_key", false, setOf("server")), "livestreamVideoSubcategoryUpdatePut" to Operation("livestreamVideoSubcategoryUpdatePut", "PUT", "/api/video/subcategory/update", "secret_key", false, setOf("server")), "loyaltyCreateItem" to Operation("loyaltyCreateItem", "POST", "/api/incentive/loyalty/create", "secret_key", false, setOf("server")), "loyaltyIncentiveLoyaltyAllGet" to Operation("loyaltyIncentiveLoyaltyAllGet", "GET", "/api/incentive/loyalty/all", "secret_key", false, setOf("server")), "loyaltyIncentiveLoyaltyDeletePost" to Operation("loyaltyIncentiveLoyaltyDeletePost", "POST", "/api/incentive/loyalty/delete", "secret_key", false, setOf("server")), "loyaltyIncentiveLoyaltyGetGet" to Operation("loyaltyIncentiveLoyaltyGetGet", "GET", "/api/incentive/loyalty/get", "secret_key", false, setOf("server")), "loyaltyIncentiveLoyaltyUpdatePut" to Operation("loyaltyIncentiveLoyaltyUpdatePut", "PUT", "/api/incentive/loyalty/update", "secret_key", false, setOf("server")), "loyaltyIncentivePromotionAllGet" to Operation("loyaltyIncentivePromotionAllGet", "GET", "/api/incentive/promotion/all", "secret_key", false, setOf("server")), "loyaltyIncentivePromotionCreatePost" to Operation("loyaltyIncentivePromotionCreatePost", "POST", "/api/incentive/promotion/create", "secret_key", false, setOf("server")), "loyaltyIncentivePromotionDeletePost" to Operation("loyaltyIncentivePromotionDeletePost", "POST", "/api/incentive/promotion/delete", "secret_key", false, setOf("server")), "loyaltyIncentivePromotionGetGet" to Operation("loyaltyIncentivePromotionGetGet", "GET", "/api/incentive/promotion/get", "secret_key", false, setOf("server")), "loyaltyIncentivePromotionUpdatePut" to Operation("loyaltyIncentivePromotionUpdatePut", "PUT", "/api/incentive/promotion/update", "secret_key", false, setOf("server")), "loyaltyIncentiveRewardAllGet" to Operation("loyaltyIncentiveRewardAllGet", "GET", "/api/incentive/reward/all", "secret_key", false, setOf("server")), "loyaltyIncentiveRewardCreatePost" to Operation("loyaltyIncentiveRewardCreatePost", "POST", "/api/incentive/reward/create", "secret_key", false, setOf("server")), "loyaltyIncentiveRewardDeletePost" to Operation("loyaltyIncentiveRewardDeletePost", "POST", "/api/incentive/reward/delete", "secret_key", false, setOf("server")), "loyaltyIncentiveRewardGetGet" to Operation("loyaltyIncentiveRewardGetGet", "GET", "/api/incentive/reward/get", "secret_key", false, setOf("server")), "loyaltyIncentiveRewardUpdatePut" to Operation("loyaltyIncentiveRewardUpdatePut", "PUT", "/api/incentive/reward/update", "secret_key", false, setOf("server")), "marketingCreateCampaign" to Operation("marketingCreateCampaign", "POST", "/api/marketing/campaign/create", "secret_key", false, setOf("server")), "marketingMarketingAutomationCreatePost" to Operation("marketingMarketingAutomationCreatePost", "POST", "/api/marketing/automation/create", "secret_key", false, setOf("server")), "marketingMarketingAutomationDeletePost" to Operation("marketingMarketingAutomationDeletePost", "POST", "/api/marketing/automation/delete", "secret_key", false, setOf("server")), "marketingMarketingAutomationGetPost" to Operation("marketingMarketingAutomationGetPost", "POST", "/api/marketing/automation/get", "secret_key", false, setOf("server")), "marketingMarketingAutomationUpdatePost" to Operation("marketingMarketingAutomationUpdatePost", "POST", "/api/marketing/automation/update", "secret_key", false, setOf("server")), "marketingMarketingCampaignAllPost" to Operation("marketingMarketingCampaignAllPost", "POST", "/api/marketing/campaign/all", "secret_key", false, setOf("server")), "marketingMarketingCampaignGetPost" to Operation("marketingMarketingCampaignGetPost", "POST", "/api/marketing/campaign/get", "secret_key", false, setOf("server")), "marketingMarketingContactAllPost" to Operation("marketingMarketingContactAllPost", "POST", "/api/marketing/contact/all", "secret_key", false, setOf("server")), "marketingMarketingContactCreatePost" to Operation("marketingMarketingContactCreatePost", "POST", "/api/marketing/contact/create", "secret_key", false, setOf("server")), "marketingMarketingContactDeletePost" to Operation("marketingMarketingContactDeletePost", "POST", "/api/marketing/contact/delete", "secret_key", false, setOf("server")), "marketingMarketingContactGetPost" to Operation("marketingMarketingContactGetPost", "POST", "/api/marketing/contact/get", "secret_key", false, setOf("server")), "marketingMarketingContactUpdatePost" to Operation("marketingMarketingContactUpdatePost", "POST", "/api/marketing/contact/update", "secret_key", false, setOf("server")), "marketingMarketingEmailsequenceCreatePost" to Operation("marketingMarketingEmailsequenceCreatePost", "POST", "/api/marketing/emailSequence/create", "secret_key", false, setOf("server")), "marketingMarketingEmailsequenceDeletePost" to Operation("marketingMarketingEmailsequenceDeletePost", "POST", "/api/marketing/emailSequence/delete", "secret_key", false, setOf("server")), "marketingMarketingEmailsequenceGetPost" to Operation("marketingMarketingEmailsequenceGetPost", "POST", "/api/marketing/emailSequence/get", "secret_key", false, setOf("server")), "marketingMarketingIntegrationAllPost" to Operation("marketingMarketingIntegrationAllPost", "POST", "/api/marketing/integration/all", "secret_key", false, setOf("server")), "marketingMarketingIntegrationCreatePost" to Operation("marketingMarketingIntegrationCreatePost", "POST", "/api/marketing/integration/create", "secret_key", false, setOf("server")), "marketingMarketingIntegrationDeletePost" to Operation("marketingMarketingIntegrationDeletePost", "POST", "/api/marketing/integration/delete", "secret_key", false, setOf("server")), "marketingMarketingIntegrationGetPost" to Operation("marketingMarketingIntegrationGetPost", "POST", "/api/marketing/integration/get", "secret_key", false, setOf("server")), "marketingMarketingIntegrationUpdatePost" to Operation("marketingMarketingIntegrationUpdatePost", "POST", "/api/marketing/integration/update", "secret_key", false, setOf("server")), "marketingMarketingLeadscoreGetPost" to Operation("marketingMarketingLeadscoreGetPost", "POST", "/api/marketing/leadScore/get", "secret_key", false, setOf("server")), "marketingMarketingLeadscoreUpdatePost" to Operation("marketingMarketingLeadscoreUpdatePost", "POST", "/api/marketing/leadScore/update", "secret_key", false, setOf("server")), "marketingMarketingSegmentAllPost" to Operation("marketingMarketingSegmentAllPost", "POST", "/api/marketing/segment/all", "secret_key", false, setOf("server")), "marketingMarketingSegmentCreatePost" to Operation("marketingMarketingSegmentCreatePost", "POST", "/api/marketing/segment/create", "secret_key", false, setOf("server")), "marketingMarketingSegmentDeletePost" to Operation("marketingMarketingSegmentDeletePost", "POST", "/api/marketing/segment/delete", "secret_key", false, setOf("server")), "marketingMarketingSegmentGetPost" to Operation("marketingMarketingSegmentGetPost", "POST", "/api/marketing/segment/get", "secret_key", false, setOf("server")), "marketingMarketingSegmentUpdatePost" to Operation("marketingMarketingSegmentUpdatePost", "POST", "/api/marketing/segment/update", "secret_key", false, setOf("server")), "marketingMarketingTemplateAllPost" to Operation("marketingMarketingTemplateAllPost", "POST", "/api/marketing/template/all", "secret_key", false, setOf("server")), "marketingMarketingTemplateCreatePost" to Operation("marketingMarketingTemplateCreatePost", "POST", "/api/marketing/template/create", "secret_key", false, setOf("server")), "marketingMarketingTemplateDeletePost" to Operation("marketingMarketingTemplateDeletePost", "POST", "/api/marketing/template/delete", "secret_key", false, setOf("server")), "marketingMarketingTemplateGetPost" to Operation("marketingMarketingTemplateGetPost", "POST", "/api/marketing/template/get", "secret_key", false, setOf("server")), "marketingMarketingTemplateUpdatePost" to Operation("marketingMarketingTemplateUpdatePost", "POST", "/api/marketing/template/update", "secret_key", false, setOf("server")), "pagesCreate" to Operation("pagesCreate", "POST", "/api/pages/general/create", "secret_key", false, setOf("server")), "pagesCreateLead" to Operation("pagesCreateLead", "POST", "/api/pages/leads/create", "public", false, setOf("server", "web", "browser-extension", "ios", "android", "react-native")), "pagesGetPublic" to Operation("pagesGetPublic", "GET", "/api/pages/general/get", "public", false, setOf("server", "web", "browser-extension", "ios", "android", "react-native")), "pagesListPublic" to Operation("pagesListPublic", "GET", "/api/pages/general/all", "public", false, setOf("server", "web", "browser-extension", "ios", "android", "react-native")), "pagesPagesGeneralAnalyticsGet" to Operation("pagesPagesGeneralAnalyticsGet", "GET", "/api/pages/general/analytics", "secret_key", false, setOf("server")), "pagesPagesGeneralDeleteDelete" to Operation("pagesPagesGeneralDeleteDelete", "DELETE", "/api/pages/general/delete", "secret_key", false, setOf("server")), "pagesPagesGeneralStatsGet" to Operation("pagesPagesGeneralStatsGet", "GET", "/api/pages/general/stats", "secret_key", false, setOf("server")), "pagesPagesGeneralUpdatePut" to Operation("pagesPagesGeneralUpdatePut", "PUT", "/api/pages/general/update", "secret_key", false, setOf("server")), "pagesPagesLeadsAllGet" to Operation("pagesPagesLeadsAllGet", "GET", "/api/pages/leads/all", "public", false, setOf("server", "web", "browser-extension", "ios", "android", "react-native")), "pagesPagesLeadsDeleteDelete" to Operation("pagesPagesLeadsDeleteDelete", "DELETE", "/api/pages/leads/delete", "secret_key", false, setOf("server")), "pagesPagesLeadsGetGet" to Operation("pagesPagesLeadsGetGet", "GET", "/api/pages/leads/get", "public", false, setOf("server", "web", "browser-extension", "ios", "android", "react-native")), "pagesPagesLeadsUpdatePut" to Operation("pagesPagesLeadsUpdatePut", "PUT", "/api/pages/leads/update", "secret_key", false, setOf("server")), "paymentsCreateCustomer" to Operation("paymentsCreateCustomer", "POST", "/api/payment/customer/create", "secret_key", false, setOf("server")), "paymentsCreateLink" to Operation("paymentsCreateLink", "POST", "/api/payment/link/create", "secret_key", false, setOf("server")), "paymentsCreateSubscription" to Operation("paymentsCreateSubscription", "POST", "/api/payment/subscription/create", "secret_key", false, setOf("server")), "paymentsGetSubscription" to Operation("paymentsGetSubscription", "POST", "/api/payment/subscription/get", "secret_key", false, setOf("server")), "paymentsGetTransaction" to Operation("paymentsGetTransaction", "POST", "/api/payment/transaction/get", "secret_key", false, setOf("server")), "paymentsPaySShortidGet" to Operation("paymentsPaySShortidGet", "GET", "/api/pay/s/{shortId}", "public", false, setOf("server", "web", "browser-extension", "ios", "android", "react-native")), "paymentsPayShortidGet" to Operation("paymentsPayShortidGet", "GET", "/api/pay/{shortId}", "public", false, setOf("server", "web", "browser-extension", "ios", "android", "react-native")), "paymentsPaymentChargeAllPost" to Operation("paymentsPaymentChargeAllPost", "POST", "/api/payment/charge/all", "secret_key", false, setOf("server")), "paymentsPaymentChargeCreatePost" to Operation("paymentsPaymentChargeCreatePost", "POST", "/api/payment/charge/create", "secret_key", false, setOf("server")), "paymentsPaymentChargeDeletePost" to Operation("paymentsPaymentChargeDeletePost", "POST", "/api/payment/charge/delete", "secret_key", false, setOf("server")), "paymentsPaymentChargeGetPost" to Operation("paymentsPaymentChargeGetPost", "POST", "/api/payment/charge/get", "secret_key", false, setOf("server")), "paymentsPaymentChargeRefundPost" to Operation("paymentsPaymentChargeRefundPost", "POST", "/api/payment/charge/refund", "secret_key", false, setOf("server")), "paymentsPaymentChargeReversePost" to Operation("paymentsPaymentChargeReversePost", "POST", "/api/payment/charge/reverse", "secret_key", false, setOf("server")), "paymentsPaymentChargeUpdatePost" to Operation("paymentsPaymentChargeUpdatePost", "POST", "/api/payment/charge/update", "secret_key", false, setOf("server")), "paymentsPaymentChargeUpdatePut" to Operation("paymentsPaymentChargeUpdatePut", "PUT", "/api/payment/charge/update", "secret_key", false, setOf("server")), "paymentsPaymentCustomerAllPost" to Operation("paymentsPaymentCustomerAllPost", "POST", "/api/payment/customer/all", "secret_key", false, setOf("server")), "paymentsPaymentCustomerDeletePost" to Operation("paymentsPaymentCustomerDeletePost", "POST", "/api/payment/customer/delete", "secret_key", false, setOf("server")), "paymentsPaymentCustomerGetPost" to Operation("paymentsPaymentCustomerGetPost", "POST", "/api/payment/customer/get", "secret_key", false, setOf("server")), "paymentsPaymentCustomerSearchPost" to Operation("paymentsPaymentCustomerSearchPost", "POST", "/api/payment/customer/search", "secret_key", false, setOf("server")), "paymentsPaymentCustomerUpdatePost" to Operation("paymentsPaymentCustomerUpdatePost", "POST", "/api/payment/customer/update", "secret_key", false, setOf("server")), "paymentsPaymentInvoiceChargePost" to Operation("paymentsPaymentInvoiceChargePost", "POST", "/api/payment/invoice/charge", "secret_key", false, setOf("server")), "paymentsPaymentInvoiceCreatePost" to Operation("paymentsPaymentInvoiceCreatePost", "POST", "/api/payment/invoice/create", "secret_key", false, setOf("server")), "paymentsPaymentInvoiceDeletePost" to Operation("paymentsPaymentInvoiceDeletePost", "POST", "/api/payment/invoice/delete", "secret_key", false, setOf("server")), "paymentsPaymentInvoiceGetGet" to Operation("paymentsPaymentInvoiceGetGet", "GET", "/api/payment/invoice/get", "secret_key", false, setOf("server")), "paymentsPaymentInvoiceGetallGet" to Operation("paymentsPaymentInvoiceGetallGet", "GET", "/api/payment/invoice/getAll", "secret_key", false, setOf("server")), "paymentsPaymentInvoiceResendPost" to Operation("paymentsPaymentInvoiceResendPost", "POST", "/api/payment/invoice/resend", "secret_key", false, setOf("server")), "paymentsPaymentInvoiceSearchGet" to Operation("paymentsPaymentInvoiceSearchGet", "GET", "/api/payment/invoice/search", "secret_key", false, setOf("server")), "paymentsPaymentInvoiceSearchbycustomerGet" to Operation("paymentsPaymentInvoiceSearchbycustomerGet", "GET", "/api/payment/invoice/searchByCustomer", "secret_key", false, setOf("server")), "paymentsPaymentInvoiceSearchbydaterangeGet" to Operation("paymentsPaymentInvoiceSearchbydaterangeGet", "GET", "/api/payment/invoice/searchByDateRange", "secret_key", false, setOf("server")), "paymentsPaymentInvoiceSearchbystatusGet" to Operation("paymentsPaymentInvoiceSearchbystatusGet", "GET", "/api/payment/invoice/searchByStatus", "secret_key", false, setOf("server")), "paymentsPaymentInvoiceSendPost" to Operation("paymentsPaymentInvoiceSendPost", "POST", "/api/payment/invoice/send", "secret_key", false, setOf("server")), "paymentsPaymentInvoiceUpdatePost" to Operation("paymentsPaymentInvoiceUpdatePost", "POST", "/api/payment/invoice/update", "secret_key", false, setOf("server")), "paymentsPaymentLinkAllPost" to Operation("paymentsPaymentLinkAllPost", "POST", "/api/payment/link/all", "secret_key", false, setOf("server")), "paymentsPaymentLinkGetPost" to Operation("paymentsPaymentLinkGetPost", "POST", "/api/payment/link/get", "secret_key", false, setOf("server")), "paymentsPaymentLinkUpdatePost" to Operation("paymentsPaymentLinkUpdatePost", "POST", "/api/payment/link/update", "secret_key", false, setOf("server")), "paymentsPaymentPaymentlinkClonePost" to Operation("paymentsPaymentPaymentlinkClonePost", "POST", "/api/payment/paymentLink/clone", "secret_key", false, setOf("server")), "paymentsPaymentPaymentlinkDeletePost" to Operation("paymentsPaymentPaymentlinkDeletePost", "POST", "/api/payment/paymentLink/delete", "secret_key", false, setOf("server")), "paymentsPaymentPaymentlinkGenerateqrPost" to Operation("paymentsPaymentPaymentlinkGenerateqrPost", "POST", "/api/payment/paymentLink/generateQr", "secret_key", false, setOf("server")), "paymentsPaymentPaymentlinkGetdonorsPaymentlinkidGet" to Operation("paymentsPaymentPaymentlinkGetdonorsPaymentlinkidGet", "GET", "/api/payment/paymentLink/getDonors/{paymentLinkId}", "secret_key", false, setOf("server")), "paymentsPaymentPaymentlinkGetgoalprogressPaymentlinkidGet" to Operation("paymentsPaymentPaymentlinkGetgoalprogressPaymentlinkidGet", "GET", "/api/payment/paymentLink/getGoalProgress/{paymentLinkId}", "secret_key", false, setOf("server")), "paymentsPaymentPaymentlinkGetpaymentsPost" to Operation("paymentsPaymentPaymentlinkGetpaymentsPost", "POST", "/api/payment/paymentLink/getPayments", "secret_key", false, setOf("server")), "paymentsPaymentPaymentlinkGetsubscriptionsGet" to Operation("paymentsPaymentPaymentlinkGetsubscriptionsGet", "GET", "/api/payment/paymentLink/getSubscriptions", "secret_key", false, setOf("server")), "paymentsPaymentPaymentlinkSharePost" to Operation("paymentsPaymentPaymentlinkSharePost", "POST", "/api/payment/paymentLink/share", "secret_key", false, setOf("server")), "paymentsPaymentPromotionAllGet" to Operation("paymentsPaymentPromotionAllGet", "GET", "/api/payment/promotion/all", "secret_key", false, setOf("server")), "paymentsPaymentPromotionCreatePost" to Operation("paymentsPaymentPromotionCreatePost", "POST", "/api/payment/promotion/create", "secret_key", false, setOf("server")), "paymentsPaymentPromotionDeleteDelete" to Operation("paymentsPaymentPromotionDeleteDelete", "DELETE", "/api/payment/promotion/delete", "secret_key", false, setOf("server")), "paymentsPaymentPromotionGetGet" to Operation("paymentsPaymentPromotionGetGet", "GET", "/api/payment/promotion/get", "secret_key", false, setOf("server")), "paymentsPaymentPromotionUpdatePut" to Operation("paymentsPaymentPromotionUpdatePut", "PUT", "/api/payment/promotion/update", "secret_key", false, setOf("server")), "paymentsPaymentReceiptCreatePost" to Operation("paymentsPaymentReceiptCreatePost", "POST", "/api/payment/receipt/create", "secret_key", false, setOf("server")), "paymentsPaymentReceiptDownloadPost" to Operation("paymentsPaymentReceiptDownloadPost", "POST", "/api/payment/receipt/download", "secret_key", false, setOf("server")), "paymentsPaymentReceiptFormatPost" to Operation("paymentsPaymentReceiptFormatPost", "POST", "/api/payment/receipt/format", "secret_key", false, setOf("server")), "paymentsPaymentReceiptGetPost" to Operation("paymentsPaymentReceiptGetPost", "POST", "/api/payment/receipt/get", "secret_key", false, setOf("server")), "paymentsPaymentReceiptGetallPost" to Operation("paymentsPaymentReceiptGetallPost", "POST", "/api/payment/receipt/getAll", "secret_key", false, setOf("server")), "paymentsPaymentReceiptResendPost" to Operation("paymentsPaymentReceiptResendPost", "POST", "/api/payment/receipt/resend", "secret_key", false, setOf("server")), "paymentsPaymentReceiptSearchPost" to Operation("paymentsPaymentReceiptSearchPost", "POST", "/api/payment/receipt/search", "secret_key", false, setOf("server")), "paymentsPaymentReceiptSendPost" to Operation("paymentsPaymentReceiptSendPost", "POST", "/api/payment/receipt/send", "secret_key", false, setOf("server")), "paymentsPaymentRefundAllPost" to Operation("paymentsPaymentRefundAllPost", "POST", "/api/payment/refund/all", "secret_key", false, setOf("server")), "paymentsPaymentRefundCreatePost" to Operation("paymentsPaymentRefundCreatePost", "POST", "/api/payment/refund/create", "secret_key", false, setOf("server")), "paymentsPaymentRefundDeletePost" to Operation("paymentsPaymentRefundDeletePost", "POST", "/api/payment/refund/delete", "secret_key", false, setOf("server")), "paymentsPaymentRefundFullrefundPost" to Operation("paymentsPaymentRefundFullrefundPost", "POST", "/api/payment/refund/fullrefund", "secret_key", false, setOf("server")), "paymentsPaymentRefundGetPost" to Operation("paymentsPaymentRefundGetPost", "POST", "/api/payment/refund/get", "secret_key", false, setOf("server")), "paymentsPaymentRefundPartialrefundPost" to Operation("paymentsPaymentRefundPartialrefundPost", "POST", "/api/payment/refund/partialrefund", "secret_key", false, setOf("server")), "paymentsPaymentRefundProcessrefundPost" to Operation("paymentsPaymentRefundProcessrefundPost", "POST", "/api/payment/refund/processrefund", "secret_key", false, setOf("server")), "paymentsPaymentRefundSearchPost" to Operation("paymentsPaymentRefundSearchPost", "POST", "/api/payment/refund/search", "secret_key", false, setOf("server")), "paymentsPaymentRefundSearchbychargePost" to Operation("paymentsPaymentRefundSearchbychargePost", "POST", "/api/payment/refund/searchbycharge", "secret_key", false, setOf("server")), "paymentsPaymentRefundSearchbycustomerPost" to Operation("paymentsPaymentRefundSearchbycustomerPost", "POST", "/api/payment/refund/searchbycustomer", "secret_key", false, setOf("server")), "paymentsPaymentRefundSearchbydaterangePost" to Operation("paymentsPaymentRefundSearchbydaterangePost", "POST", "/api/payment/refund/searchbydaterange", "secret_key", false, setOf("server")), "paymentsPaymentRefundSearchbystatusPost" to Operation("paymentsPaymentRefundSearchbystatusPost", "POST", "/api/payment/refund/searchbystatus", "secret_key", false, setOf("server")), "paymentsPaymentRefundUpdatePost" to Operation("paymentsPaymentRefundUpdatePost", "POST", "/api/payment/refund/update", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionAllPost" to Operation("paymentsPaymentSubscriptionAllPost", "POST", "/api/payment/subscription/all", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionCancelPost" to Operation("paymentsPaymentSubscriptionCancelPost", "POST", "/api/payment/subscription/cancel", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionChangeplanPost" to Operation("paymentsPaymentSubscriptionChangeplanPost", "POST", "/api/payment/subscription/changePlan", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionDeleteDelete" to Operation("paymentsPaymentSubscriptionDeleteDelete", "DELETE", "/api/payment/subscription/delete", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionDeletePost" to Operation("paymentsPaymentSubscriptionDeletePost", "POST", "/api/payment/subscription/delete", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionEndtrialPost" to Operation("paymentsPaymentSubscriptionEndtrialPost", "POST", "/api/payment/subscription/endTrial", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionGetGet" to Operation("paymentsPaymentSubscriptionGetGet", "GET", "/api/payment/subscription/get", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionGetallGet" to Operation("paymentsPaymentSubscriptionGetallGet", "GET", "/api/payment/subscription/getAll", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionGethistoryGet" to Operation("paymentsPaymentSubscriptionGethistoryGet", "GET", "/api/payment/subscription/getHistory", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionGetinvoicesGet" to Operation("paymentsPaymentSubscriptionGetinvoicesGet", "GET", "/api/payment/subscription/getInvoices", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionGetnextbillingGet" to Operation("paymentsPaymentSubscriptionGetnextbillingGet", "GET", "/api/payment/subscription/getNextBilling", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionGetstatusGet" to Operation("paymentsPaymentSubscriptionGetstatusGet", "GET", "/api/payment/subscription/getStatus", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionGetusageGet" to Operation("paymentsPaymentSubscriptionGetusageGet", "GET", "/api/payment/subscription/getUsage", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionPausePost" to Operation("paymentsPaymentSubscriptionPausePost", "POST", "/api/payment/subscription/pause", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionReactivatePost" to Operation("paymentsPaymentSubscriptionReactivatePost", "POST", "/api/payment/subscription/reactivate", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionResumePost" to Operation("paymentsPaymentSubscriptionResumePost", "POST", "/api/payment/subscription/resume", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionSearchGet" to Operation("paymentsPaymentSubscriptionSearchGet", "GET", "/api/payment/subscription/search", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionSearchbycustomerGet" to Operation("paymentsPaymentSubscriptionSearchbycustomerGet", "GET", "/api/payment/subscription/searchByCustomer", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionSearchbyplanGet" to Operation("paymentsPaymentSubscriptionSearchbyplanGet", "GET", "/api/payment/subscription/searchByPlan", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionSearchbystatusGet" to Operation("paymentsPaymentSubscriptionSearchbystatusGet", "GET", "/api/payment/subscription/searchByStatus", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionStarttrialPost" to Operation("paymentsPaymentSubscriptionStarttrialPost", "POST", "/api/payment/subscription/startTrial", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionUpdatePost" to Operation("paymentsPaymentSubscriptionUpdatePost", "POST", "/api/payment/subscription/update", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionUpdatePut" to Operation("paymentsPaymentSubscriptionUpdatePut", "PUT", "/api/payment/subscription/update", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionUpdatepaymentmethodPost" to Operation("paymentsPaymentSubscriptionUpdatepaymentmethodPost", "POST", "/api/payment/subscription/updatePaymentMethod", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionplanAllPost" to Operation("paymentsPaymentSubscriptionplanAllPost", "POST", "/api/payment/subscriptionplan/all", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionplanCalculatepricePost" to Operation("paymentsPaymentSubscriptionplanCalculatepricePost", "POST", "/api/payment/subscriptionPlan/calculatePrice", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionplanCreatePost" to Operation("paymentsPaymentSubscriptionplanCreatePost", "POST", "/api/payment/subscriptionplan/create", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionplanDeleteDelete" to Operation("paymentsPaymentSubscriptionplanDeleteDelete", "DELETE", "/api/payment/subscriptionPlan/delete", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionplanDeletePost" to Operation("paymentsPaymentSubscriptionplanDeletePost", "POST", "/api/payment/subscriptionplan/delete", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionplanGetGet" to Operation("paymentsPaymentSubscriptionplanGetGet", "GET", "/api/payment/subscriptionPlan/get", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionplanGetPost" to Operation("paymentsPaymentSubscriptionplanGetPost", "POST", "/api/payment/subscriptionplan/get", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionplanGetallGet" to Operation("paymentsPaymentSubscriptionplanGetallGet", "GET", "/api/payment/subscriptionPlan/getall", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionplanGetfeaturesGet" to Operation("paymentsPaymentSubscriptionplanGetfeaturesGet", "GET", "/api/payment/subscriptionPlan/getFeatures", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionplanUpdatePost" to Operation("paymentsPaymentSubscriptionplanUpdatePost", "POST", "/api/payment/subscriptionplan/update", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionplanUpdatePut" to Operation("paymentsPaymentSubscriptionplanUpdatePut", "PUT", "/api/payment/subscriptionPlan/update", "secret_key", false, setOf("server")), "paymentsPaymentSubscriptionplanUpdatefeaturesPut" to Operation("paymentsPaymentSubscriptionplanUpdatefeaturesPut", "PUT", "/api/payment/subscriptionPlan/updateFeatures", "secret_key", false, setOf("server")), "paymentsPaymentTransactionCalculatefeePost" to Operation("paymentsPaymentTransactionCalculatefeePost", "POST", "/api/payment/transaction/calculateFee", "secret_key", false, setOf("server")), "paymentsPaymentTransactionCheckstatusPost" to Operation("paymentsPaymentTransactionCheckstatusPost", "POST", "/api/payment/transaction/checkStatus", "secret_key", false, setOf("server")), "paymentsPaymentTransactionCreatePost" to Operation("paymentsPaymentTransactionCreatePost", "POST", "/api/payment/transaction/create", "secret_key", false, setOf("server")), "paymentsPaymentTransactionDeletePost" to Operation("paymentsPaymentTransactionDeletePost", "POST", "/api/payment/transaction/delete", "secret_key", false, setOf("server")), "paymentsPaymentTransactionGetallPost" to Operation("paymentsPaymentTransactionGetallPost", "POST", "/api/payment/transaction/getAll", "secret_key", false, setOf("server")), "paymentsPaymentTransactionGetdetailsPost" to Operation("paymentsPaymentTransactionGetdetailsPost", "POST", "/api/payment/transaction/getDetails", "secret_key", false, setOf("server")), "paymentsPaymentTransactionGeteventsPost" to Operation("paymentsPaymentTransactionGeteventsPost", "POST", "/api/payment/transaction/getEvents", "secret_key", false, setOf("server")), "paymentsPaymentTransactionHistoryPost" to Operation("paymentsPaymentTransactionHistoryPost", "POST", "/api/payment/transaction/history", "secret_key", false, setOf("server")), "paymentsPaymentTransactionRefundPost" to Operation("paymentsPaymentTransactionRefundPost", "POST", "/api/payment/transaction/refund", "secret_key", false, setOf("server")), "paymentsPaymentTransactionUpdatePost" to Operation("paymentsPaymentTransactionUpdatePost", "POST", "/api/payment/transaction/update", "secret_key", false, setOf("server")), "paymentsPaymentTransactionVoidPost" to Operation("paymentsPaymentTransactionVoidPost", "POST", "/api/payment/transaction/void", "secret_key", false, setOf("server")), "placesCreate" to Operation("placesCreate", "POST", "/api/places/general/create", "secret_key", false, setOf("server")), "placesGetPublic" to Operation("placesGetPublic", "GET", "/api/places/general/get", "public", false, setOf("server", "web", "browser-extension", "ios", "android", "react-native")), "placesListPublic" to Operation("placesListPublic", "GET", "/api/places/general/all", "public", false, setOf("server", "web", "browser-extension", "ios", "android", "react-native")), "placesPlacesGeneralDeletePost" to Operation("placesPlacesGeneralDeletePost", "POST", "/api/places/general/delete", "secret_key", false, setOf("server")), "placesUpdate" to Operation("placesUpdate", "PUT", "/api/places/general/update", "secret_key", false, setOf("server")), "pollsCastVote" to Operation("pollsCastVote", "POST", "/api/vote/cast/create", "publishable_key", true, setOf("server", "web", "browser-extension", "ios", "android", "react-native")), "pollsVoteCastGetPost" to Operation("pollsVoteCastGetPost", "POST", "/api/vote/cast/get", "secret_key", false, setOf("server")), "pollsVoteCastGetallPost" to Operation("pollsVoteCastGetallPost", "POST", "/api/vote/cast/getall", "secret_key", false, setOf("server")), "sponsorsCreate" to Operation("sponsorsCreate", "POST", "/api/sponsor/general/create", "secret_key", false, setOf("server")), "sponsorsGetPublic" to Operation("sponsorsGetPublic", "GET", "/api/sponsor/general/get", "public", false, setOf("server", "web", "ios", "android", "react-native")), "sponsorsSponsorGeneralAllGet" to Operation("sponsorsSponsorGeneralAllGet", "GET", "/api/sponsor/general/all", "public", false, setOf("server", "web", "ios", "android", "react-native")), "sponsorsSponsorGeneralDeletePost" to Operation("sponsorsSponsorGeneralDeletePost", "POST", "/api/sponsor/general/delete", "secret_key", false, setOf("server")), "sponsorsSponsorGeneralUpdatePut" to Operation("sponsorsSponsorGeneralUpdatePut", "PUT", "/api/sponsor/general/update", "secret_key", false, setOf("server")), "teamsCreate" to Operation("teamsCreate", "POST", "/api/team/general/create", "secret_key", false, setOf("server")), "teamsTeamCategoryAllGet" to Operation("teamsTeamCategoryAllGet", "GET", "/api/team/category/all", "secret_key", false, setOf("server")), "teamsTeamCategoryCreatePost" to Operation("teamsTeamCategoryCreatePost", "POST", "/api/team/category/create", "secret_key", false, setOf("server")), "teamsTeamCategoryDeletePost" to Operation("teamsTeamCategoryDeletePost", "POST", "/api/team/category/delete", "secret_key", false, setOf("server")), "teamsTeamCategoryGetGet" to Operation("teamsTeamCategoryGetGet", "GET", "/api/team/category/get", "secret_key", false, setOf("server")), "teamsTeamCategoryUpdatePut" to Operation("teamsTeamCategoryUpdatePut", "PUT", "/api/team/category/update", "secret_key", false, setOf("server")), "teamsTeamGeneralAllGet" to Operation("teamsTeamGeneralAllGet", "GET", "/api/team/general/all", "secret_key", false, setOf("server")), "teamsTeamGeneralDeletePost" to Operation("teamsTeamGeneralDeletePost", "POST", "/api/team/general/delete", "secret_key", false, setOf("server")), "teamsTeamGeneralGetGet" to Operation("teamsTeamGeneralGetGet", "GET", "/api/team/general/get", "secret_key", false, setOf("server")), "teamsTeamGeneralUpdatePut" to Operation("teamsTeamGeneralUpdatePut", "PUT", "/api/team/general/update", "secret_key", false, setOf("server")), "teamsTeamSubcategoryAllGet" to Operation("teamsTeamSubcategoryAllGet", "GET", "/api/team/subcategory/all", "secret_key", false, setOf("server")), "teamsTeamSubcategoryCreatePost" to Operation("teamsTeamSubcategoryCreatePost", "POST", "/api/team/subcategory/create", "secret_key", false, setOf("server")), "teamsTeamSubcategoryDeletePost" to Operation("teamsTeamSubcategoryDeletePost", "POST", "/api/team/subcategory/delete", "secret_key", false, setOf("server")), "teamsTeamSubcategoryGetGet" to Operation("teamsTeamSubcategoryGetGet", "GET", "/api/team/subcategory/get", "secret_key", false, setOf("server")), "teamsTeamSubcategoryUpdatePut" to Operation("teamsTeamSubcategoryUpdatePut", "PUT", "/api/team/subcategory/update", "secret_key", false, setOf("server")), "vendorsCreate" to Operation("vendorsCreate", "POST", "/api/vendor/general/create", "secret_key", false, setOf("server")), "vendorsGetPublic" to Operation("vendorsGetPublic", "GET", "/api/vendor/general/get", "public", false, setOf("server", "web", "ios", "android", "react-native")), "vendorsVendorGeneralAllGet" to Operation("vendorsVendorGeneralAllGet", "GET", "/api/vendor/general/all", "public", false, setOf("server", "web", "ios", "android", "react-native")), "vendorsVendorGeneralUpdatePut" to Operation("vendorsVendorGeneralUpdatePut", "PUT", "/api/vendor/general/update", "secret_key", false, setOf("server")), ) } }