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.willAuto... | 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")... | 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_r... | 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... | 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';
... | 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_middlewa... | 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;
cons... | 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.Compati... | 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;
... | 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.AccountPermissionGro... | 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.Accoun... | 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;
// Ret... | 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.
... | 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;
... | 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... | 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 adverti... | 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: st... | 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... | 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 ... | 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;
... | 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, prof... | 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, profi... | 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, cr... | 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;
// Retriev... | 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;
// Retriev... | 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... | 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(r... | 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;
// Retriev... | 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, crea... | 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, possi... | 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;
//... | 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): Dfare... | 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): D... | 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.F... | 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: str... | 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 mobil... | 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.OperatingSystemVersion... | 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: str... | 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.OrdersLi... | 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;
// R... | 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.PlacementStr... | 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.PlacementsGenerateTagsRe... | 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;
// Retri... | 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(... | 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;
... | 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... | 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 suppo... | 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 a... | 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,... | 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: st... | 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.TargetingTemp... | 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.UserRol... | 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.UserRolePermissionsListR... | 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, possi... | 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;
defaultCreativeSiz... | 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?: st... | 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.Schem... | 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 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.