type
stringclasses
7 values
content
stringlengths
4
9.55k
repo
stringlengths
7
96
path
stringlengths
4
178
language
stringclasses
1 value
MethodDeclaration
usedPromotionalOffers(): string[] { const set = new Set(this.allTransactions .filter((transaction) => transaction.promotionalOfferId) .map((transaction) => transaction.promotionalOfferId!)) return [...set] }
levibostian/dollabill-apple
app/parse/common/auto_renewable_subscription/subscription.ts
TypeScript
MethodDeclaration
priceIncreaseAccepted(): boolean | undefined { let priceIncreaseAccepted: boolean | undefined if (this.renewalInfo?.price_consent_status) { priceIncreaseAccepted = this.renewalInfo.price_consent_status === "1" } return priceIncreaseAccepted }
levibostian/dollabill-apple
app/parse/common/auto_renewable_subscription/subscription.ts
TypeScript
MethodDeclaration
issues(): AutoRenewableSubscriptionIssues { return { notYetAcceptingPriceIncrease: this.priceIncreaseAccepted() === false, billingIssue: this.renewalInfo?.expiration_intent === "2" || this.gracePeriodExpireDate() !== undefined, willVoluntaryCancel: this.renewalInfo !== undefined && !this.willAutoRenew() } }
levibostian/dollabill-apple
app/parse/common/auto_renewable_subscription/subscription.ts
TypeScript
MethodDeclaration
issuesStrings(statuses: AutoRenewableSubscriptionIssues): AutoRenewableSubscriptionIssueString[] { const strings: AutoRenewableSubscriptionIssueString[] = [] if (statuses.notYetAcceptingPriceIncrease) strings.push("not_yet_accepting_price_increase") if (statuses.billingIssue) strings.push("billing_issue") if (statuses.willVoluntaryCancel) strings.push("will_voluntary_cancel") return strings }
levibostian/dollabill-apple
app/parse/common/auto_renewable_subscription/subscription.ts
TypeScript
MethodDeclaration
willAutoRenew(): boolean { return this.renewalInfo?.auto_renew_status === "1" || false }
levibostian/dollabill-apple
app/parse/common/auto_renewable_subscription/subscription.ts
TypeScript
MethodDeclaration
gracePeriodExpireDate(): Date | undefined { if (this.renewalInfo?.grace_period_expires_date_ms) return new Date(parseInt(this.renewalInfo.grace_period_expires_date_ms!)) return undefined }
levibostian/dollabill-apple
app/parse/common/auto_renewable_subscription/subscription.ts
TypeScript
MethodDeclaration
expireDate(): Date { return this.latestExpireDateTransaction.expiresDate }
levibostian/dollabill-apple
app/parse/common/auto_renewable_subscription/subscription.ts
TypeScript
MethodDeclaration
currentEndDate(): Date { return this.cancelledDate() || this.gracePeriodExpireDate() || this.expireDate() }
levibostian/dollabill-apple
app/parse/common/auto_renewable_subscription/subscription.ts
TypeScript
MethodDeclaration
willDowngradeToProductId(): string | undefined { return this.renewalInfo?.auto_renew_product_id }
levibostian/dollabill-apple
app/parse/common/auto_renewable_subscription/subscription.ts
TypeScript
MethodDeclaration
isInBillingRetry(): boolean { return this.renewalInfo?.is_in_billing_retry_period === "1" || false }
levibostian/dollabill-apple
app/parse/common/auto_renewable_subscription/subscription.ts
TypeScript
MethodDeclaration
cancelledDate(): Date | undefined { return this.latestExpireDateTransaction.cancelledDate }
levibostian/dollabill-apple
app/parse/common/auto_renewable_subscription/subscription.ts
TypeScript
MethodDeclaration
status(): AutoRenewableSubscriptionStatus { const inGracePeriod = this.renewalInfo?.grace_period_expires_date !== undefined || false if (inGracePeriod) return "grace_period" const isInBillingRetry = this.renewalInfo?.is_in_billing_retry_period === "1" || false if (isInBillingRetry) return "billing_retry_period" if (this.renewalInfo?.expiration_intent !== undefined) { const involuntaryCancelled = this.renewalInfo.expiration_intent === "2" || this.renewalInfo.expiration_intent === "4" if (involuntaryCancelled) return "involuntary_cancel" const voluntaryCancelled = this.renewalInfo.expiration_intent === "1" || false if (voluntaryCancelled) return "voluntary_cancel" return "other_not_active" } if (this.latestExpireDateTransaction.cancelledDate !== undefined || this.latestExpireDateTransaction.refundReason !== undefined) { const refunded = this.latestExpireDateTransaction.refundReason === "app_issue" || this.latestExpireDateTransaction.refundReason === "other" if (refunded) return "refunded" const upgraded = this.latestExpireDateTransaction.refundReason === "upgrade" if (upgraded) return "upgraded" return "other_not_active" } // Note: this should be caught by the "expiration_intent" of the pending renewal object but just in case, we want to catch when the customer has gone beyond the billing retry period and there is still a billing issue. if (this.latestExpireDateTransaction.expiresDate.getTime() < new Date().getTime()) { return "voluntary_cancel" } return "active" }
levibostian/dollabill-apple
app/parse/common/auto_renewable_subscription/subscription.ts
TypeScript
ArrowFunction
() => { this.isEE = true; }
orientechnologies/orientdb-studio
src/app/administration/importmanager/importmanager.component.ts
TypeScript
ArrowFunction
() => { this.isEE = false; }
orientechnologies/orientdb-studio
src/app/administration/importmanager/importmanager.component.ts
TypeScript
ClassDeclaration
@Component({ selector: 'importmanager', templateUrl: "./importmanager.component.html", styles: [ '.vertical-van-tab {padding-left: 0px}', '.tabs-left {border-bottom: none; padding-top: 2px; border-right: 1px solid #ddd;}', '.tabs-left>li {float: none; margin-bottom: 2px;}', '.tabs-left>li {margin-right: -1px;}', '.tabs-left>li.active>a, .tabs-left>li.active>a:hover, .tabs-left>li.active>a:focus {border-bottom-color: #ddd; border-right-color: transparent;}', '.tabs-left>li>a {border-radius: 4px 0 0 4px; margin-right: 0; padding-left: 10px; display:block;}', '.not-allowed {opacity: 0.3; cursor: not-allowed;}', '.importer-description {margin: 20px; margin-bottom: 40px; margin-left: 15px;}', 'img {float: left; border: none; margin: 15px;}', 'li>a {font-size: 15px;}', 'ul {list-style-type: none}' ] }) class ImportManagerComponent { private currentTab = 'home'; private isEE; private hints; constructor(private agentService: AgentService) { agentService.isActive().then(() => { this.isEE = true; }).catch(() => { this.isEE = false; }) this.hints = { importDbFromSQL: "This is the Enterprise Edition, so you can <b>migrate</b> and <b>synch</b> your SQL database with <b>Teleporter</b>.", downloadEE: "You can <b>migrate</b> your SQL database with <b>Teleporter</b> but you <b>cannot synch</b> it as this is the Community Edition.<br/> " + "You can enjoy all the features simply downloading the <a href='http://orientdb.com/orientdb-enterprise/?#matrix'>Enterprise Edition.</a>" } } enablePopovers() { (<any>$('[data-toggle="popover"]')).popover({ title: '', placement: 'right', trigger: 'focus' }); } setTab(importer) { this.currentTab = importer; } isActive(tabName) { if(tabName === 'home' && this.currentTab === 'home') { return 'active'; } else if(tabName === 'teleporter' && this.currentTab === 'teleporter') { return 'active'; } else if(tabName === 'neo4jImporter' && this.currentTab === 'neo4jImporter') { return 'active'; } return ''; } }
orientechnologies/orientdb-studio
src/app/administration/importmanager/importmanager.component.ts
TypeScript
MethodDeclaration
enablePopovers() { (<any>$('[data-toggle="popover"]')).popover({ title: '', placement: 'right', trigger: 'focus' }); }
orientechnologies/orientdb-studio
src/app/administration/importmanager/importmanager.component.ts
TypeScript
MethodDeclaration
setTab(importer) { this.currentTab = importer; }
orientechnologies/orientdb-studio
src/app/administration/importmanager/importmanager.component.ts
TypeScript
MethodDeclaration
isActive(tabName) { if(tabName === 'home' && this.currentTab === 'home') { return 'active'; } else if(tabName === 'teleporter' && this.currentTab === 'teleporter') { return 'active'; } else if(tabName === 'neo4jImporter' && this.currentTab === 'neo4jImporter') { return 'active'; } return ''; }
orientechnologies/orientdb-studio
src/app/administration/importmanager/importmanager.component.ts
TypeScript
ArrowFunction
({ lcd }: Option) => async (addressProvider: AddressProvider): Promise<ConfigResponse> => { const bAssetContractAddress = addressProvider.bLunaHub(); const response: ConfigResponse = await lcd.wasm.contractQuery( bAssetContractAddress, { config: {}, }, ); return response; }
lukerhoads/anchor.js
src/queries/basset/hub-config.ts
TypeScript
ArrowFunction
async (addressProvider: AddressProvider): Promise<ConfigResponse> => { const bAssetContractAddress = addressProvider.bLunaHub(); const response: ConfigResponse = await lcd.wasm.contractQuery( bAssetContractAddress, { config: {}, }, ); return response; }
lukerhoads/anchor.js
src/queries/basset/hub-config.ts
TypeScript
InterfaceDeclaration
interface Option { lcd: LCDClient; }
lukerhoads/anchor.js
src/queries/basset/hub-config.ts
TypeScript
InterfaceDeclaration
interface ConfigResponse { owner: string; reward_contract?: string; token_contract?: string; airdrop_registry_contract?: string; }
lukerhoads/anchor.js
src/queries/basset/hub-config.ts
TypeScript
ArrowFunction
(props: Props): React.ReactElement => { const theme = useTheme() return ( <Box style={{ display: "flex", justifyContent: "center", alignItems: "center", minWidth: "33%", maxWidth: "33%", }}
agenciaglobal/web
src/components/PortifolioSwitcher/previous.tsx
TypeScript
InterfaceDeclaration
interface Props { previous?: SitePageContextPrevious | null }
agenciaglobal/web
src/components/PortifolioSwitcher/previous.tsx
TypeScript
ClassDeclaration
export class TagResourceCommand implements __aws_sdk_types.Command< InputTypesUnion, TagResourceInput, OutputTypesUnion, TagResourceOutput, KinesisAnalyticsV2ResolvedConfiguration, Blob > { readonly model = TagResource; readonly middlewareStack = new __aws_sdk_middleware_stack.MiddlewareStack< TagResourceInput, TagResourceOutput, Blob >(); constructor(readonly input: TagResourceInput) {} resolveMiddleware( clientStack: __aws_sdk_middleware_stack.MiddlewareStack< InputTypesUnion, OutputTypesUnion, Blob >, configuration: KinesisAnalyticsV2ResolvedConfiguration ): __aws_sdk_types.Handler<TagResourceInput, TagResourceOutput> { const { handler } = configuration; const stack = clientStack.concat(this.middlewareStack); const handlerExecutionContext: __aws_sdk_types.HandlerExecutionContext = { logger: {} as any, model: this.model }; return stack.resolve( handler<TagResourceInput, TagResourceOutput>(handlerExecutionContext), handlerExecutionContext ); } }
Dylan0916/aws-sdk-js-v3
clients/browser/client-kinesis-analytics-v2-browser/commands/TagResourceCommand.ts
TypeScript
MethodDeclaration
resolveMiddleware( clientStack: __aws_sdk_middleware_stack.MiddlewareStack< InputTypesUnion, OutputTypesUnion, Blob >, configuration: KinesisAnalyticsV2ResolvedConfiguration ): __aws_sdk_types.Handler<TagResourceInput, TagResourceOutput> { const { handler } = configuration; const stack = clientStack.concat(this.middlewareStack); const handlerExecutionContext: __aws_sdk_types.HandlerExecutionContext = { logger: {} as any, model: this.model }; return stack.resolve( handler<TagResourceInput, TagResourceOutput>(handlerExecutionContext), handlerExecutionContext ); }
Dylan0916/aws-sdk-js-v3
clients/browser/client-kinesis-analytics-v2-browser/commands/TagResourceCommand.ts
TypeScript
InterfaceDeclaration
interface CompatibleFieldsCollection { // Returns the fields that are compatible to be selected in the respective sections of a report criteria, given the fields already selected in the input report and user permissions. query(resource: Schema.Report, profileId: string): Dfareporting.Schema.CompatibleFields; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface FilesCollection { // Retrieves a report file. This method supports media download. get(profileId: string, reportId: string, fileId: string): Dfareporting.Schema.File; // Lists files for a report. list(profileId: string, reportId: string): Dfareporting.Schema.FileList; // Lists files for a report. list(profileId: string, reportId: string, optionalArgs: object): Dfareporting.Schema.FileList; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface AccountActiveAdSummariesCollection { // Gets the account's active ad summary by account ID. get(profileId: string, summaryAccountId: string): Dfareporting.Schema.AccountActiveAdSummary; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface AccountPermissionGroupsCollection { // Gets one account permission group by ID. get(profileId: string, id: string): Dfareporting.Schema.AccountPermissionGroup; // Retrieves the list of account permission groups. list(profileId: string): Dfareporting.Schema.AccountPermissionGroupsListResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface AccountPermissionsCollection { // Gets one account permission by ID. get(profileId: string, id: string): Dfareporting.Schema.AccountPermission; // Retrieves the list of account permissions. list(profileId: string): Dfareporting.Schema.AccountPermissionsListResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface AccountUserProfilesCollection { // Gets one account user profile by ID. get(profileId: string, id: string): Dfareporting.Schema.AccountUserProfile; // Inserts a new account user profile. insert(resource: Schema.AccountUserProfile, profileId: string): Dfareporting.Schema.AccountUserProfile; // Retrieves a list of account user profiles, possibly filtered. This method supports paging. list(profileId: string): Dfareporting.Schema.AccountUserProfilesListResponse; // Retrieves a list of account user profiles, possibly filtered. This method supports paging. list(profileId: string, optionalArgs: object): Dfareporting.Schema.AccountUserProfilesListResponse; // Updates an existing account user profile. This method supports patch semantics. patch(resource: Schema.AccountUserProfile, profileId: string, id: string): Dfareporting.Schema.AccountUserProfile; // Updates an existing account user profile. update(resource: Schema.AccountUserProfile, profileId: string): Dfareporting.Schema.AccountUserProfile; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface AccountsCollection { // Gets one account by ID. get(profileId: string, id: string): Dfareporting.Schema.Account; // Retrieves the list of accounts, possibly filtered. This method supports paging. list(profileId: string): Dfareporting.Schema.AccountsListResponse; // Retrieves the list of accounts, possibly filtered. This method supports paging. list(profileId: string, optionalArgs: object): Dfareporting.Schema.AccountsListResponse; // Updates an existing account. This method supports patch semantics. patch(resource: Schema.Account, profileId: string, id: string): Dfareporting.Schema.Account; // Updates an existing account. update(resource: Schema.Account, profileId: string): Dfareporting.Schema.Account; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface AdsCollection { // Gets one ad by ID. get(profileId: string, id: string): Dfareporting.Schema.Ad; // Inserts a new ad. insert(resource: Schema.Ad, profileId: string): Dfareporting.Schema.Ad; // Retrieves a list of ads, possibly filtered. This method supports paging. list(profileId: string): Dfareporting.Schema.AdsListResponse; // Retrieves a list of ads, possibly filtered. This method supports paging. list(profileId: string, optionalArgs: object): Dfareporting.Schema.AdsListResponse; // Updates an existing ad. This method supports patch semantics. patch(resource: Schema.Ad, profileId: string, id: string): Dfareporting.Schema.Ad; // Updates an existing ad. update(resource: Schema.Ad, profileId: string): Dfareporting.Schema.Ad; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface AdvertiserGroupsCollection { // Gets one advertiser group by ID. get(profileId: string, id: string): Dfareporting.Schema.AdvertiserGroup; // Inserts a new advertiser group. insert(resource: Schema.AdvertiserGroup, profileId: string): Dfareporting.Schema.AdvertiserGroup; // Retrieves a list of advertiser groups, possibly filtered. This method supports paging. list(profileId: string): Dfareporting.Schema.AdvertiserGroupsListResponse; // Retrieves a list of advertiser groups, possibly filtered. This method supports paging. list(profileId: string, optionalArgs: object): Dfareporting.Schema.AdvertiserGroupsListResponse; // Updates an existing advertiser group. This method supports patch semantics. patch(resource: Schema.AdvertiserGroup, profileId: string, id: string): Dfareporting.Schema.AdvertiserGroup; // Deletes an existing advertiser group. remove(profileId: string, id: string): void; // Updates an existing advertiser group. update(resource: Schema.AdvertiserGroup, profileId: string): Dfareporting.Schema.AdvertiserGroup; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface AdvertiserLandingPagesCollection { // Gets one landing page by ID. get(profileId: string, id: string): Dfareporting.Schema.LandingPage; // Inserts a new landing page. insert(resource: Schema.LandingPage, profileId: string): Dfareporting.Schema.LandingPage; // Retrieves a list of landing pages. list(profileId: string): Dfareporting.Schema.AdvertiserLandingPagesListResponse; // Retrieves a list of landing pages. list(profileId: string, optionalArgs: object): Dfareporting.Schema.AdvertiserLandingPagesListResponse; // Updates an existing landing page. This method supports patch semantics. patch(resource: Schema.LandingPage, profileId: string, id: string): Dfareporting.Schema.LandingPage; // Updates an existing landing page. update(resource: Schema.LandingPage, profileId: string): Dfareporting.Schema.LandingPage; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface AdvertisersCollection { // Gets one advertiser by ID. get(profileId: string, id: string): Dfareporting.Schema.Advertiser; // Inserts a new advertiser. insert(resource: Schema.Advertiser, profileId: string): Dfareporting.Schema.Advertiser; // Retrieves a list of advertisers, possibly filtered. This method supports paging. list(profileId: string): Dfareporting.Schema.AdvertisersListResponse; // Retrieves a list of advertisers, possibly filtered. This method supports paging. list(profileId: string, optionalArgs: object): Dfareporting.Schema.AdvertisersListResponse; // Updates an existing advertiser. This method supports patch semantics. patch(resource: Schema.Advertiser, profileId: string, id: string): Dfareporting.Schema.Advertiser; // Updates an existing advertiser. update(resource: Schema.Advertiser, profileId: string): Dfareporting.Schema.Advertiser; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface BrowsersCollection { // Retrieves a list of browsers. list(profileId: string): Dfareporting.Schema.BrowsersListResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface CampaignCreativeAssociationsCollection { // Associates a creative with the specified campaign. This method creates a default ad with dimensions matching the creative in the campaign if such a default ad does not exist already. insert(resource: Schema.CampaignCreativeAssociation, profileId: string, campaignId: string): Dfareporting.Schema.CampaignCreativeAssociation; // Retrieves the list of creative IDs associated with the specified campaign. This method supports paging. list(profileId: string, campaignId: string): Dfareporting.Schema.CampaignCreativeAssociationsListResponse; // Retrieves the list of creative IDs associated with the specified campaign. This method supports paging. list(profileId: string, campaignId: string, optionalArgs: object): Dfareporting.Schema.CampaignCreativeAssociationsListResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface CampaignsCollection { // Gets one campaign by ID. get(profileId: string, id: string): Dfareporting.Schema.Campaign; // Inserts a new campaign. insert(resource: Schema.Campaign, profileId: string): Dfareporting.Schema.Campaign; // Retrieves a list of campaigns, possibly filtered. This method supports paging. list(profileId: string): Dfareporting.Schema.CampaignsListResponse; // Retrieves a list of campaigns, possibly filtered. This method supports paging. list(profileId: string, optionalArgs: object): Dfareporting.Schema.CampaignsListResponse; // Updates an existing campaign. This method supports patch semantics. patch(resource: Schema.Campaign, profileId: string, id: string): Dfareporting.Schema.Campaign; // Updates an existing campaign. update(resource: Schema.Campaign, profileId: string): Dfareporting.Schema.Campaign; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface ChangeLogsCollection { // Gets one change log by ID. get(profileId: string, id: string): Dfareporting.Schema.ChangeLog; // Retrieves a list of change logs. This method supports paging. list(profileId: string): Dfareporting.Schema.ChangeLogsListResponse; // Retrieves a list of change logs. This method supports paging. list(profileId: string, optionalArgs: object): Dfareporting.Schema.ChangeLogsListResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface CitiesCollection { // Retrieves a list of cities, possibly filtered. list(profileId: string): Dfareporting.Schema.CitiesListResponse; // Retrieves a list of cities, possibly filtered. list(profileId: string, optionalArgs: object): Dfareporting.Schema.CitiesListResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface ConnectionTypesCollection { // Gets one connection type by ID. get(profileId: string, id: string): Dfareporting.Schema.ConnectionType; // Retrieves a list of connection types. list(profileId: string): Dfareporting.Schema.ConnectionTypesListResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface ContentCategoriesCollection { // Gets one content category by ID. get(profileId: string, id: string): Dfareporting.Schema.ContentCategory; // Inserts a new content category. insert(resource: Schema.ContentCategory, profileId: string): Dfareporting.Schema.ContentCategory; // Retrieves a list of content categories, possibly filtered. This method supports paging. list(profileId: string): Dfareporting.Schema.ContentCategoriesListResponse; // Retrieves a list of content categories, possibly filtered. This method supports paging. list(profileId: string, optionalArgs: object): Dfareporting.Schema.ContentCategoriesListResponse; // Updates an existing content category. This method supports patch semantics. patch(resource: Schema.ContentCategory, profileId: string, id: string): Dfareporting.Schema.ContentCategory; // Deletes an existing content category. remove(profileId: string, id: string): void; // Updates an existing content category. update(resource: Schema.ContentCategory, profileId: string): Dfareporting.Schema.ContentCategory; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface ConversionsCollection { // Inserts conversions. batchinsert(resource: Schema.ConversionsBatchInsertRequest, profileId: string): Dfareporting.Schema.ConversionsBatchInsertResponse; // Updates existing conversions. batchupdate(resource: Schema.ConversionsBatchUpdateRequest, profileId: string): Dfareporting.Schema.ConversionsBatchUpdateResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface CountriesCollection { // Gets one country by ID. get(profileId: string, dartId: string): Dfareporting.Schema.Country; // Retrieves a list of countries. list(profileId: string): Dfareporting.Schema.CountriesListResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface CreativeAssetsCollection { // Inserts a new creative asset. insert(resource: Schema.CreativeAssetMetadata, profileId: string, advertiserId: string): Dfareporting.Schema.CreativeAssetMetadata; // Inserts a new creative asset. insert(resource: Schema.CreativeAssetMetadata, profileId: string, advertiserId: string, mediaData: any): Dfareporting.Schema.CreativeAssetMetadata; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface CreativeFieldValuesCollection { // Gets one creative field value by ID. get(profileId: string, creativeFieldId: string, id: string): Dfareporting.Schema.CreativeFieldValue; // Inserts a new creative field value. insert(resource: Schema.CreativeFieldValue, profileId: string, creativeFieldId: string): Dfareporting.Schema.CreativeFieldValue; // Retrieves a list of creative field values, possibly filtered. This method supports paging. list(profileId: string, creativeFieldId: string): Dfareporting.Schema.CreativeFieldValuesListResponse; // Retrieves a list of creative field values, possibly filtered. This method supports paging. list(profileId: string, creativeFieldId: string, optionalArgs: object): Dfareporting.Schema.CreativeFieldValuesListResponse; // Updates an existing creative field value. This method supports patch semantics. patch(resource: Schema.CreativeFieldValue, profileId: string, creativeFieldId: string, id: string): Dfareporting.Schema.CreativeFieldValue; // Deletes an existing creative field value. remove(profileId: string, creativeFieldId: string, id: string): void; // Updates an existing creative field value. update(resource: Schema.CreativeFieldValue, profileId: string, creativeFieldId: string): Dfareporting.Schema.CreativeFieldValue; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface CreativeFieldsCollection { // Gets one creative field by ID. get(profileId: string, id: string): Dfareporting.Schema.CreativeField; // Inserts a new creative field. insert(resource: Schema.CreativeField, profileId: string): Dfareporting.Schema.CreativeField; // Retrieves a list of creative fields, possibly filtered. This method supports paging. list(profileId: string): Dfareporting.Schema.CreativeFieldsListResponse; // Retrieves a list of creative fields, possibly filtered. This method supports paging. list(profileId: string, optionalArgs: object): Dfareporting.Schema.CreativeFieldsListResponse; // Updates an existing creative field. This method supports patch semantics. patch(resource: Schema.CreativeField, profileId: string, id: string): Dfareporting.Schema.CreativeField; // Deletes an existing creative field. remove(profileId: string, id: string): void; // Updates an existing creative field. update(resource: Schema.CreativeField, profileId: string): Dfareporting.Schema.CreativeField; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface CreativeGroupsCollection { // Gets one creative group by ID. get(profileId: string, id: string): Dfareporting.Schema.CreativeGroup; // Inserts a new creative group. insert(resource: Schema.CreativeGroup, profileId: string): Dfareporting.Schema.CreativeGroup; // Retrieves a list of creative groups, possibly filtered. This method supports paging. list(profileId: string): Dfareporting.Schema.CreativeGroupsListResponse; // Retrieves a list of creative groups, possibly filtered. This method supports paging. list(profileId: string, optionalArgs: object): Dfareporting.Schema.CreativeGroupsListResponse; // Updates an existing creative group. This method supports patch semantics. patch(resource: Schema.CreativeGroup, profileId: string, id: string): Dfareporting.Schema.CreativeGroup; // Updates an existing creative group. update(resource: Schema.CreativeGroup, profileId: string): Dfareporting.Schema.CreativeGroup; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface CreativesCollection { // Gets one creative by ID. get(profileId: string, id: string): Dfareporting.Schema.Creative; // Inserts a new creative. insert(resource: Schema.Creative, profileId: string): Dfareporting.Schema.Creative; // Retrieves a list of creatives, possibly filtered. This method supports paging. list(profileId: string): Dfareporting.Schema.CreativesListResponse; // Retrieves a list of creatives, possibly filtered. This method supports paging. list(profileId: string, optionalArgs: object): Dfareporting.Schema.CreativesListResponse; // Updates an existing creative. This method supports patch semantics. patch(resource: Schema.Creative, profileId: string, id: string): Dfareporting.Schema.Creative; // Updates an existing creative. update(resource: Schema.Creative, profileId: string): Dfareporting.Schema.Creative; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface DimensionValuesCollection { // Retrieves list of report dimension values for a list of filters. query(resource: Schema.DimensionValueRequest, profileId: string): Dfareporting.Schema.DimensionValueList; // Retrieves list of report dimension values for a list of filters. query(resource: Schema.DimensionValueRequest, profileId: string, optionalArgs: object): Dfareporting.Schema.DimensionValueList; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface DirectorySitesCollection { // Gets one directory site by ID. get(profileId: string, id: string): Dfareporting.Schema.DirectorySite; // Inserts a new directory site. insert(resource: Schema.DirectorySite, profileId: string): Dfareporting.Schema.DirectorySite; // Retrieves a list of directory sites, possibly filtered. This method supports paging. list(profileId: string): Dfareporting.Schema.DirectorySitesListResponse; // Retrieves a list of directory sites, possibly filtered. This method supports paging. list(profileId: string, optionalArgs: object): Dfareporting.Schema.DirectorySitesListResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface DynamicTargetingKeysCollection { // Inserts a new dynamic targeting key. Keys must be created at the advertiser level before being assigned to the advertiser's ads, creatives, or placements. There is a maximum of 1000 keys per advertiser, out of which a maximum of 20 keys can be assigned per ad, creative, or placement. insert(resource: Schema.DynamicTargetingKey, profileId: string): Dfareporting.Schema.DynamicTargetingKey; // Retrieves a list of dynamic targeting keys. list(profileId: string): Dfareporting.Schema.DynamicTargetingKeysListResponse; // Retrieves a list of dynamic targeting keys. list(profileId: string, optionalArgs: object): Dfareporting.Schema.DynamicTargetingKeysListResponse; // Deletes an existing dynamic targeting key. remove(profileId: string, objectId: string, name: string, objectType: string): void; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface EventTagsCollection { // Gets one event tag by ID. get(profileId: string, id: string): Dfareporting.Schema.EventTag; // Inserts a new event tag. insert(resource: Schema.EventTag, profileId: string): Dfareporting.Schema.EventTag; // Retrieves a list of event tags, possibly filtered. list(profileId: string): Dfareporting.Schema.EventTagsListResponse; // Retrieves a list of event tags, possibly filtered. list(profileId: string, optionalArgs: object): Dfareporting.Schema.EventTagsListResponse; // Updates an existing event tag. This method supports patch semantics. patch(resource: Schema.EventTag, profileId: string, id: string): Dfareporting.Schema.EventTag; // Deletes an existing event tag. remove(profileId: string, id: string): void; // Updates an existing event tag. update(resource: Schema.EventTag, profileId: string): Dfareporting.Schema.EventTag; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface FilesCollection { // Retrieves a report file by its report ID and file ID. This method supports media download. get(reportId: string, fileId: string): Dfareporting.Schema.File; // Lists files for a user profile. list(profileId: string): Dfareporting.Schema.FileList; // Lists files for a user profile. list(profileId: string, optionalArgs: object): Dfareporting.Schema.FileList; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface FloodlightActivitiesCollection { // Generates a tag for a floodlight activity. generatetag(profileId: string): Dfareporting.Schema.FloodlightActivitiesGenerateTagResponse; // Generates a tag for a floodlight activity. generatetag(profileId: string, optionalArgs: object): Dfareporting.Schema.FloodlightActivitiesGenerateTagResponse; // Gets one floodlight activity by ID. get(profileId: string, id: string): Dfareporting.Schema.FloodlightActivity; // Inserts a new floodlight activity. insert(resource: Schema.FloodlightActivity, profileId: string): Dfareporting.Schema.FloodlightActivity; // Retrieves a list of floodlight activities, possibly filtered. This method supports paging. list(profileId: string): Dfareporting.Schema.FloodlightActivitiesListResponse; // Retrieves a list of floodlight activities, possibly filtered. This method supports paging. list(profileId: string, optionalArgs: object): Dfareporting.Schema.FloodlightActivitiesListResponse; // Updates an existing floodlight activity. This method supports patch semantics. patch(resource: Schema.FloodlightActivity, profileId: string, id: string): Dfareporting.Schema.FloodlightActivity; // Deletes an existing floodlight activity. remove(profileId: string, id: string): void; // Updates an existing floodlight activity. update(resource: Schema.FloodlightActivity, profileId: string): Dfareporting.Schema.FloodlightActivity; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface FloodlightActivityGroupsCollection { // Gets one floodlight activity group by ID. get(profileId: string, id: string): Dfareporting.Schema.FloodlightActivityGroup; // Inserts a new floodlight activity group. insert(resource: Schema.FloodlightActivityGroup, profileId: string): Dfareporting.Schema.FloodlightActivityGroup; // Retrieves a list of floodlight activity groups, possibly filtered. This method supports paging. list(profileId: string): Dfareporting.Schema.FloodlightActivityGroupsListResponse; // Retrieves a list of floodlight activity groups, possibly filtered. This method supports paging. list(profileId: string, optionalArgs: object): Dfareporting.Schema.FloodlightActivityGroupsListResponse; // Updates an existing floodlight activity group. This method supports patch semantics. patch(resource: Schema.FloodlightActivityGroup, profileId: string, id: string): Dfareporting.Schema.FloodlightActivityGroup; // Updates an existing floodlight activity group. update(resource: Schema.FloodlightActivityGroup, profileId: string): Dfareporting.Schema.FloodlightActivityGroup; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface FloodlightConfigurationsCollection { // Gets one floodlight configuration by ID. get(profileId: string, id: string): Dfareporting.Schema.FloodlightConfiguration; // Retrieves a list of floodlight configurations, possibly filtered. list(profileId: string): Dfareporting.Schema.FloodlightConfigurationsListResponse; // Retrieves a list of floodlight configurations, possibly filtered. list(profileId: string, optionalArgs: object): Dfareporting.Schema.FloodlightConfigurationsListResponse; // Updates an existing floodlight configuration. This method supports patch semantics. patch(resource: Schema.FloodlightConfiguration, profileId: string, id: string): Dfareporting.Schema.FloodlightConfiguration; // Updates an existing floodlight configuration. update(resource: Schema.FloodlightConfiguration, profileId: string): Dfareporting.Schema.FloodlightConfiguration; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface InventoryItemsCollection { // Gets one inventory item by ID. get(profileId: string, projectId: string, id: string): Dfareporting.Schema.InventoryItem; // Retrieves a list of inventory items, possibly filtered. This method supports paging. list(profileId: string, projectId: string): Dfareporting.Schema.InventoryItemsListResponse; // Retrieves a list of inventory items, possibly filtered. This method supports paging. list(profileId: string, projectId: string, optionalArgs: object): Dfareporting.Schema.InventoryItemsListResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface LanguagesCollection { // Retrieves a list of languages. list(profileId: string): Dfareporting.Schema.LanguagesListResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface MetrosCollection { // Retrieves a list of metros. list(profileId: string): Dfareporting.Schema.MetrosListResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface MobileAppsCollection { // Gets one mobile app by ID. get(profileId: string, id: string): Dfareporting.Schema.MobileApp; // Retrieves list of available mobile apps. list(profileId: string): Dfareporting.Schema.MobileAppsListResponse; // Retrieves list of available mobile apps. list(profileId: string, optionalArgs: object): Dfareporting.Schema.MobileAppsListResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface MobileCarriersCollection { // Gets one mobile carrier by ID. get(profileId: string, id: string): Dfareporting.Schema.MobileCarrier; // Retrieves a list of mobile carriers. list(profileId: string): Dfareporting.Schema.MobileCarriersListResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface OperatingSystemVersionsCollection { // Gets one operating system version by ID. get(profileId: string, id: string): Dfareporting.Schema.OperatingSystemVersion; // Retrieves a list of operating system versions. list(profileId: string): Dfareporting.Schema.OperatingSystemVersionsListResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface OperatingSystemsCollection { // Gets one operating system by DART ID. get(profileId: string, dartId: string): Dfareporting.Schema.OperatingSystem; // Retrieves a list of operating systems. list(profileId: string): Dfareporting.Schema.OperatingSystemsListResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface OrderDocumentsCollection { // Gets one order document by ID. get(profileId: string, projectId: string, id: string): Dfareporting.Schema.OrderDocument; // Retrieves a list of order documents, possibly filtered. This method supports paging. list(profileId: string, projectId: string): Dfareporting.Schema.OrderDocumentsListResponse; // Retrieves a list of order documents, possibly filtered. This method supports paging. list(profileId: string, projectId: string, optionalArgs: object): Dfareporting.Schema.OrderDocumentsListResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface OrdersCollection { // Gets one order by ID. get(profileId: string, projectId: string, id: string): Dfareporting.Schema.Order; // Retrieves a list of orders, possibly filtered. This method supports paging. list(profileId: string, projectId: string): Dfareporting.Schema.OrdersListResponse; // Retrieves a list of orders, possibly filtered. This method supports paging. list(profileId: string, projectId: string, optionalArgs: object): Dfareporting.Schema.OrdersListResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface PlacementGroupsCollection { // Gets one placement group by ID. get(profileId: string, id: string): Dfareporting.Schema.PlacementGroup; // Inserts a new placement group. insert(resource: Schema.PlacementGroup, profileId: string): Dfareporting.Schema.PlacementGroup; // Retrieves a list of placement groups, possibly filtered. This method supports paging. list(profileId: string): Dfareporting.Schema.PlacementGroupsListResponse; // Retrieves a list of placement groups, possibly filtered. This method supports paging. list(profileId: string, optionalArgs: object): Dfareporting.Schema.PlacementGroupsListResponse; // Updates an existing placement group. This method supports patch semantics. patch(resource: Schema.PlacementGroup, profileId: string, id: string): Dfareporting.Schema.PlacementGroup; // Updates an existing placement group. update(resource: Schema.PlacementGroup, profileId: string): Dfareporting.Schema.PlacementGroup; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface PlacementStrategiesCollection { // Gets one placement strategy by ID. get(profileId: string, id: string): Dfareporting.Schema.PlacementStrategy; // Inserts a new placement strategy. insert(resource: Schema.PlacementStrategy, profileId: string): Dfareporting.Schema.PlacementStrategy; // Retrieves a list of placement strategies, possibly filtered. This method supports paging. list(profileId: string): Dfareporting.Schema.PlacementStrategiesListResponse; // Retrieves a list of placement strategies, possibly filtered. This method supports paging. list(profileId: string, optionalArgs: object): Dfareporting.Schema.PlacementStrategiesListResponse; // Updates an existing placement strategy. This method supports patch semantics. patch(resource: Schema.PlacementStrategy, profileId: string, id: string): Dfareporting.Schema.PlacementStrategy; // Deletes an existing placement strategy. remove(profileId: string, id: string): void; // Updates an existing placement strategy. update(resource: Schema.PlacementStrategy, profileId: string): Dfareporting.Schema.PlacementStrategy; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface PlacementsCollection { // Generates tags for a placement. generatetags(profileId: string): Dfareporting.Schema.PlacementsGenerateTagsResponse; // Generates tags for a placement. generatetags(profileId: string, optionalArgs: object): Dfareporting.Schema.PlacementsGenerateTagsResponse; // Gets one placement by ID. get(profileId: string, id: string): Dfareporting.Schema.Placement; // Inserts a new placement. insert(resource: Schema.Placement, profileId: string): Dfareporting.Schema.Placement; // Retrieves a list of placements, possibly filtered. This method supports paging. list(profileId: string): Dfareporting.Schema.PlacementsListResponse; // Retrieves a list of placements, possibly filtered. This method supports paging. list(profileId: string, optionalArgs: object): Dfareporting.Schema.PlacementsListResponse; // Updates an existing placement. This method supports patch semantics. patch(resource: Schema.Placement, profileId: string, id: string): Dfareporting.Schema.Placement; // Updates an existing placement. update(resource: Schema.Placement, profileId: string): Dfareporting.Schema.Placement; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface PlatformTypesCollection { // Gets one platform type by ID. get(profileId: string, id: string): Dfareporting.Schema.PlatformType; // Retrieves a list of platform types. list(profileId: string): Dfareporting.Schema.PlatformTypesListResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface PostalCodesCollection { // Gets one postal code by ID. get(profileId: string, code: string): Dfareporting.Schema.PostalCode; // Retrieves a list of postal codes. list(profileId: string): Dfareporting.Schema.PostalCodesListResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface ProjectsCollection { // Gets one project by ID. get(profileId: string, id: string): Dfareporting.Schema.Project; // Retrieves a list of projects, possibly filtered. This method supports paging. list(profileId: string): Dfareporting.Schema.ProjectsListResponse; // Retrieves a list of projects, possibly filtered. This method supports paging. list(profileId: string, optionalArgs: object): Dfareporting.Schema.ProjectsListResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface RegionsCollection { // Retrieves a list of regions. list(profileId: string): Dfareporting.Schema.RegionsListResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface RemarketingListSharesCollection { // Gets one remarketing list share by remarketing list ID. get(profileId: string, remarketingListId: string): Dfareporting.Schema.RemarketingListShare; // Updates an existing remarketing list share. This method supports patch semantics. patch(resource: Schema.RemarketingListShare, profileId: string, remarketingListId: string): Dfareporting.Schema.RemarketingListShare; // Updates an existing remarketing list share. update(resource: Schema.RemarketingListShare, profileId: string): Dfareporting.Schema.RemarketingListShare; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface RemarketingListsCollection { // Gets one remarketing list by ID. get(profileId: string, id: string): Dfareporting.Schema.RemarketingList; // Inserts a new remarketing list. insert(resource: Schema.RemarketingList, profileId: string): Dfareporting.Schema.RemarketingList; // Retrieves a list of remarketing lists, possibly filtered. This method supports paging. list(profileId: string, advertiserId: string): Dfareporting.Schema.RemarketingListsListResponse; // Retrieves a list of remarketing lists, possibly filtered. This method supports paging. list(profileId: string, advertiserId: string, optionalArgs: object): Dfareporting.Schema.RemarketingListsListResponse; // Updates an existing remarketing list. This method supports patch semantics. patch(resource: Schema.RemarketingList, profileId: string, id: string): Dfareporting.Schema.RemarketingList; // Updates an existing remarketing list. update(resource: Schema.RemarketingList, profileId: string): Dfareporting.Schema.RemarketingList; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface ReportsCollection { CompatibleFields?: Dfareporting.Collection.Reports.CompatibleFieldsCollection; Files?: Dfareporting.Collection.Reports.FilesCollection; // Retrieves a report by its ID. get(profileId: string, reportId: string): Dfareporting.Schema.Report; // Creates a report. insert(resource: Schema.Report, profileId: string): Dfareporting.Schema.Report; // Retrieves list of reports. list(profileId: string): Dfareporting.Schema.ReportList; // Retrieves list of reports. list(profileId: string, optionalArgs: object): Dfareporting.Schema.ReportList; // Updates a report. This method supports patch semantics. patch(resource: Schema.Report, profileId: string, reportId: string): Dfareporting.Schema.Report; // Deletes a report by its ID. remove(profileId: string, reportId: string): void; // Runs a report. run(profileId: string, reportId: string): Dfareporting.Schema.File; // Runs a report. run(profileId: string, reportId: string, optionalArgs: object): Dfareporting.Schema.File; // Updates a report. update(resource: Schema.Report, profileId: string, reportId: string): Dfareporting.Schema.Report; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface SitesCollection { // Gets one site by ID. get(profileId: string, id: string): Dfareporting.Schema.Site; // Inserts a new site. insert(resource: Schema.Site, profileId: string): Dfareporting.Schema.Site; // Retrieves a list of sites, possibly filtered. This method supports paging. list(profileId: string): Dfareporting.Schema.SitesListResponse; // Retrieves a list of sites, possibly filtered. This method supports paging. list(profileId: string, optionalArgs: object): Dfareporting.Schema.SitesListResponse; // Updates an existing site. This method supports patch semantics. patch(resource: Schema.Site, profileId: string, id: string): Dfareporting.Schema.Site; // Updates an existing site. update(resource: Schema.Site, profileId: string): Dfareporting.Schema.Site; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface SizesCollection { // Gets one size by ID. get(profileId: string, id: string): Dfareporting.Schema.Size; // Inserts a new size. insert(resource: Schema.Size, profileId: string): Dfareporting.Schema.Size; // Retrieves a list of sizes, possibly filtered. Retrieved sizes are globally unique and may include values not currently in use by your account. Due to this, the list of sizes returned by this method may differ from the list seen in the Trafficking UI. list(profileId: string): Dfareporting.Schema.SizesListResponse; // Retrieves a list of sizes, possibly filtered. Retrieved sizes are globally unique and may include values not currently in use by your account. Due to this, the list of sizes returned by this method may differ from the list seen in the Trafficking UI. list(profileId: string, optionalArgs: object): Dfareporting.Schema.SizesListResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface SubaccountsCollection { // Gets one subaccount by ID. get(profileId: string, id: string): Dfareporting.Schema.Subaccount; // Inserts a new subaccount. insert(resource: Schema.Subaccount, profileId: string): Dfareporting.Schema.Subaccount; // Gets a list of subaccounts, possibly filtered. This method supports paging. list(profileId: string): Dfareporting.Schema.SubaccountsListResponse; // Gets a list of subaccounts, possibly filtered. This method supports paging. list(profileId: string, optionalArgs: object): Dfareporting.Schema.SubaccountsListResponse; // Updates an existing subaccount. This method supports patch semantics. patch(resource: Schema.Subaccount, profileId: string, id: string): Dfareporting.Schema.Subaccount; // Updates an existing subaccount. update(resource: Schema.Subaccount, profileId: string): Dfareporting.Schema.Subaccount; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface TargetableRemarketingListsCollection { // Gets one remarketing list by ID. get(profileId: string, id: string): Dfareporting.Schema.TargetableRemarketingList; // Retrieves a list of targetable remarketing lists, possibly filtered. This method supports paging. list(profileId: string, advertiserId: string): Dfareporting.Schema.TargetableRemarketingListsListResponse; // Retrieves a list of targetable remarketing lists, possibly filtered. This method supports paging. list(profileId: string, advertiserId: string, optionalArgs: object): Dfareporting.Schema.TargetableRemarketingListsListResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface TargetingTemplatesCollection { // Gets one targeting template by ID. get(profileId: string, id: string): Dfareporting.Schema.TargetingTemplate; // Inserts a new targeting template. insert(resource: Schema.TargetingTemplate, profileId: string): Dfareporting.Schema.TargetingTemplate; // Retrieves a list of targeting templates, optionally filtered. This method supports paging. list(profileId: string): Dfareporting.Schema.TargetingTemplatesListResponse; // Retrieves a list of targeting templates, optionally filtered. This method supports paging. list(profileId: string, optionalArgs: object): Dfareporting.Schema.TargetingTemplatesListResponse; // Updates an existing targeting template. This method supports patch semantics. patch(resource: Schema.TargetingTemplate, profileId: string, id: string): Dfareporting.Schema.TargetingTemplate; // Updates an existing targeting template. update(resource: Schema.TargetingTemplate, profileId: string): Dfareporting.Schema.TargetingTemplate; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface UserProfilesCollection { // Gets one user profile by ID. get(profileId: string): Dfareporting.Schema.UserProfile; // Retrieves list of user profiles for a user. list(): Dfareporting.Schema.UserProfileList; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface UserRolePermissionGroupsCollection { // Gets one user role permission group by ID. get(profileId: string, id: string): Dfareporting.Schema.UserRolePermissionGroup; // Gets a list of all supported user role permission groups. list(profileId: string): Dfareporting.Schema.UserRolePermissionGroupsListResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface UserRolePermissionsCollection { // Gets one user role permission by ID. get(profileId: string, id: string): Dfareporting.Schema.UserRolePermission; // Gets a list of user role permissions, possibly filtered. list(profileId: string): Dfareporting.Schema.UserRolePermissionsListResponse; // Gets a list of user role permissions, possibly filtered. list(profileId: string, optionalArgs: object): Dfareporting.Schema.UserRolePermissionsListResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface UserRolesCollection { // Gets one user role by ID. get(profileId: string, id: string): Dfareporting.Schema.UserRole; // Inserts a new user role. insert(resource: Schema.UserRole, profileId: string): Dfareporting.Schema.UserRole; // Retrieves a list of user roles, possibly filtered. This method supports paging. list(profileId: string): Dfareporting.Schema.UserRolesListResponse; // Retrieves a list of user roles, possibly filtered. This method supports paging. list(profileId: string, optionalArgs: object): Dfareporting.Schema.UserRolesListResponse; // Updates an existing user role. This method supports patch semantics. patch(resource: Schema.UserRole, profileId: string, id: string): Dfareporting.Schema.UserRole; // Deletes an existing user role. remove(profileId: string, id: string): void; // Updates an existing user role. update(resource: Schema.UserRole, profileId: string): Dfareporting.Schema.UserRole; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface VideoFormatsCollection { // Gets one video format by ID. get(profileId: string, id: number): Dfareporting.Schema.VideoFormat; // Lists available video formats. list(profileId: string): Dfareporting.Schema.VideoFormatsListResponse; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface Account { accountPermissionIds?: string[]; accountProfile?: string; active?: boolean; activeAdsLimitTier?: string; activeViewOptOut?: boolean; availablePermissionIds?: string[]; countryId?: string; currencyId?: string; defaultCreativeSizeId?: string; description?: string; id?: string; kind?: string; locale?: string; maximumImageSize?: string; name?: string; nielsenOcrEnabled?: boolean; reportsConfiguration?: Dfareporting.Schema.ReportsConfiguration; shareReportsWithTwitter?: boolean; teaserSizeLimit?: string; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface AccountActiveAdSummary { accountId?: string; activeAds?: string; activeAdsLimitTier?: string; availableAds?: string; kind?: string; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface AccountPermission { accountProfiles?: string[]; id?: string; kind?: string; level?: string; name?: string; permissionGroupId?: string; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface AccountPermissionGroup { id?: string; kind?: string; name?: string; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface AccountPermissionGroupsListResponse { accountPermissionGroups?: Dfareporting.Schema.AccountPermissionGroup[]; kind?: string; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface AccountPermissionsListResponse { accountPermissions?: Dfareporting.Schema.AccountPermission[]; kind?: string; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface AccountUserProfile { accountId?: string; active?: boolean; advertiserFilter?: Dfareporting.Schema.ObjectFilter; campaignFilter?: Dfareporting.Schema.ObjectFilter; comments?: string; email?: string; id?: string; kind?: string; locale?: string; name?: string; siteFilter?: Dfareporting.Schema.ObjectFilter; subaccountId?: string; traffickerType?: string; userAccessType?: string; userRoleFilter?: Dfareporting.Schema.ObjectFilter; userRoleId?: string; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface AccountUserProfilesListResponse { accountUserProfiles?: Dfareporting.Schema.AccountUserProfile[]; kind?: string; nextPageToken?: string; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface AccountsListResponse { accounts?: Dfareporting.Schema.Account[]; kind?: string; nextPageToken?: string; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface Activities { filters?: Dfareporting.Schema.DimensionValue[]; kind?: string; metricNames?: string[]; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface Ad { accountId?: string; active?: boolean; advertiserId?: string; advertiserIdDimensionValue?: Dfareporting.Schema.DimensionValue; archived?: boolean; audienceSegmentId?: string; campaignId?: string; campaignIdDimensionValue?: Dfareporting.Schema.DimensionValue; clickThroughUrl?: Dfareporting.Schema.ClickThroughUrl; clickThroughUrlSuffixProperties?: Dfareporting.Schema.ClickThroughUrlSuffixProperties; comments?: string; compatibility?: string; createInfo?: Dfareporting.Schema.LastModifiedInfo; creativeGroupAssignments?: Dfareporting.Schema.CreativeGroupAssignment[]; creativeRotation?: Dfareporting.Schema.CreativeRotation; dayPartTargeting?: Dfareporting.Schema.DayPartTargeting; defaultClickThroughEventTagProperties?: Dfareporting.Schema.DefaultClickThroughEventTagProperties; deliverySchedule?: Dfareporting.Schema.DeliverySchedule; dynamicClickTracker?: boolean; endTime?: string; eventTagOverrides?: Dfareporting.Schema.EventTagOverride[]; geoTargeting?: Dfareporting.Schema.GeoTargeting; id?: string; idDimensionValue?: Dfareporting.Schema.DimensionValue; keyValueTargetingExpression?: Dfareporting.Schema.KeyValueTargetingExpression; kind?: string; languageTargeting?: Dfareporting.Schema.LanguageTargeting; lastModifiedInfo?: Dfareporting.Schema.LastModifiedInfo; name?: string; placementAssignments?: Dfareporting.Schema.PlacementAssignment[]; remarketingListExpression?: Dfareporting.Schema.ListTargetingExpression; size?: Dfareporting.Schema.Size; sslCompliant?: boolean; sslRequired?: boolean; startTime?: string; subaccountId?: string; targetingTemplateId?: string; technologyTargeting?: Dfareporting.Schema.TechnologyTargeting; type?: string; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript
InterfaceDeclaration
interface AdBlockingConfiguration { clickThroughUrl?: string; creativeBundleId?: string; enabled?: boolean; overrideClickThroughUrl?: boolean; }
1000ch/DefinitelyTyped
types/google-apps-script/apis/dfareporting_v3_3.d.ts
TypeScript