google-ads-api-client
Version:
A friendly and exhaustive client to the google-ads-api, code generated directly from google's published protobuf schema.
43 lines (42 loc) • 2.03 kB
TypeScript
import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
import type { IBinaryWriter } from "@protobuf-ts/runtime";
import type { BinaryReadOptions } from "@protobuf-ts/runtime";
import type { IBinaryReader } from "@protobuf-ts/runtime";
import type { PartialMessage } from "@protobuf-ts/runtime";
import { MessageType } from "@protobuf-ts/runtime";
/**
* A data sharing connection, allowing the import of third party app analytics
* into a Google Ads Customer.
*
* @generated from protobuf message google.ads.googleads.v11.resources.ThirdPartyAppAnalyticsLink
*/
export interface ThirdPartyAppAnalyticsLink {
/**
* Immutable. The resource name of the third party app analytics link.
* Third party app analytics link resource names have the form:
*
* `customers/{customer_id}/thirdPartyAppAnalyticsLinks/{account_link_id}`
*
* @generated from protobuf field: string resource_name = 1;
*/
resourceName: string;
/**
* Output only. The shareable link ID that should be provided to the third party when
* setting up app analytics. This is able to be regenerated using regenerate
* method in the ThirdPartyAppAnalyticsLinkService.
*
* @generated from protobuf field: optional string shareable_link_id = 3;
*/
shareableLinkId?: string;
}
declare class ThirdPartyAppAnalyticsLink$Type extends MessageType<ThirdPartyAppAnalyticsLink> {
constructor();
create(value?: PartialMessage<ThirdPartyAppAnalyticsLink>): ThirdPartyAppAnalyticsLink;
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ThirdPartyAppAnalyticsLink): ThirdPartyAppAnalyticsLink;
internalBinaryWrite(message: ThirdPartyAppAnalyticsLink, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
}
/**
* @generated MessageType for protobuf message google.ads.googleads.v11.resources.ThirdPartyAppAnalyticsLink
*/
export declare const ThirdPartyAppAnalyticsLink: ThirdPartyAppAnalyticsLink$Type;
export {};