@maxim_mazurok/gapi.client.adexchangebuyer2-v2beta1 0.0.20231205 → 0.0.20231207
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +499 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://adexchangebuyer.googleapis.com/$discovery/rest?version=v2beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20231207
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -3764,9 +3764,507 @@ declare namespace gapi.client {
|
|
|
3764
3764
|
accounts: AccountsResource;
|
|
3765
3765
|
filterSets: FilterSetsResource;
|
|
3766
3766
|
}
|
|
3767
|
+
interface BidMetricsResource {
|
|
3768
|
+
/** Lists all metrics that are measured in terms of number of bids. */
|
|
3769
|
+
list(request?: {
|
|
3770
|
+
/** V1 error format. */
|
|
3771
|
+
'$.xgafv'?: string;
|
|
3772
|
+
/** OAuth access token. */
|
|
3773
|
+
access_token?: string;
|
|
3774
|
+
/** Data format for response. */
|
|
3775
|
+
alt?: string;
|
|
3776
|
+
/** JSONP */
|
|
3777
|
+
callback?: string;
|
|
3778
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3779
|
+
fields?: string;
|
|
3780
|
+
/** Name of the filter set that should be applied to the requested metrics. For example: - For a bidder-level filter set for bidder 123: `bidders/123/filterSets/abc` - For an account-level filter set for the buyer account representing bidder 123: `bidders/123/accounts/123/filterSets/abc` - For an account-level filter set for the child seat buyer account 456 whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` */
|
|
3781
|
+
filterSetName: string;
|
|
3782
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3783
|
+
key?: string;
|
|
3784
|
+
/** OAuth 2.0 token for the current user. */
|
|
3785
|
+
oauth_token?: string;
|
|
3786
|
+
/** Requested page size. The server may return fewer results than requested. If unspecified, the server will pick an appropriate default. */
|
|
3787
|
+
pageSize?: number;
|
|
3788
|
+
/** A token identifying a page of results the server should return. Typically, this is the value of ListBidMetricsResponse.nextPageToken returned from the previous call to the bidMetrics.list method. */
|
|
3789
|
+
pageToken?: string;
|
|
3790
|
+
/** Returns response with indentations and line breaks. */
|
|
3791
|
+
prettyPrint?: boolean;
|
|
3792
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3793
|
+
quotaUser?: string;
|
|
3794
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3795
|
+
upload_protocol?: string;
|
|
3796
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3797
|
+
uploadType?: string;
|
|
3798
|
+
}): Request<ListBidMetricsResponse>;
|
|
3799
|
+
}
|
|
3800
|
+
interface BidResponseErrorsResource {
|
|
3801
|
+
/** List all errors that occurred in bid responses, with the number of bid responses affected for each reason. */
|
|
3802
|
+
list(request?: {
|
|
3803
|
+
/** V1 error format. */
|
|
3804
|
+
'$.xgafv'?: string;
|
|
3805
|
+
/** OAuth access token. */
|
|
3806
|
+
access_token?: string;
|
|
3807
|
+
/** Data format for response. */
|
|
3808
|
+
alt?: string;
|
|
3809
|
+
/** JSONP */
|
|
3810
|
+
callback?: string;
|
|
3811
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3812
|
+
fields?: string;
|
|
3813
|
+
/** Name of the filter set that should be applied to the requested metrics. For example: - For a bidder-level filter set for bidder 123: `bidders/123/filterSets/abc` - For an account-level filter set for the buyer account representing bidder 123: `bidders/123/accounts/123/filterSets/abc` - For an account-level filter set for the child seat buyer account 456 whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` */
|
|
3814
|
+
filterSetName: string;
|
|
3815
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3816
|
+
key?: string;
|
|
3817
|
+
/** OAuth 2.0 token for the current user. */
|
|
3818
|
+
oauth_token?: string;
|
|
3819
|
+
/** Requested page size. The server may return fewer results than requested. If unspecified, the server will pick an appropriate default. */
|
|
3820
|
+
pageSize?: number;
|
|
3821
|
+
/** A token identifying a page of results the server should return. Typically, this is the value of ListBidResponseErrorsResponse.nextPageToken returned from the previous call to the bidResponseErrors.list method. */
|
|
3822
|
+
pageToken?: string;
|
|
3823
|
+
/** Returns response with indentations and line breaks. */
|
|
3824
|
+
prettyPrint?: boolean;
|
|
3825
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3826
|
+
quotaUser?: string;
|
|
3827
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3828
|
+
upload_protocol?: string;
|
|
3829
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3830
|
+
uploadType?: string;
|
|
3831
|
+
}): Request<ListBidResponseErrorsResponse>;
|
|
3832
|
+
}
|
|
3833
|
+
interface BidResponsesWithoutBidsResource {
|
|
3834
|
+
/** List all reasons for which bid responses were considered to have no applicable bids, with the number of bid responses affected for each reason. */
|
|
3835
|
+
list(request?: {
|
|
3836
|
+
/** V1 error format. */
|
|
3837
|
+
'$.xgafv'?: string;
|
|
3838
|
+
/** OAuth access token. */
|
|
3839
|
+
access_token?: string;
|
|
3840
|
+
/** Data format for response. */
|
|
3841
|
+
alt?: string;
|
|
3842
|
+
/** JSONP */
|
|
3843
|
+
callback?: string;
|
|
3844
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3845
|
+
fields?: string;
|
|
3846
|
+
/** Name of the filter set that should be applied to the requested metrics. For example: - For a bidder-level filter set for bidder 123: `bidders/123/filterSets/abc` - For an account-level filter set for the buyer account representing bidder 123: `bidders/123/accounts/123/filterSets/abc` - For an account-level filter set for the child seat buyer account 456 whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` */
|
|
3847
|
+
filterSetName: string;
|
|
3848
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3849
|
+
key?: string;
|
|
3850
|
+
/** OAuth 2.0 token for the current user. */
|
|
3851
|
+
oauth_token?: string;
|
|
3852
|
+
/** Requested page size. The server may return fewer results than requested. If unspecified, the server will pick an appropriate default. */
|
|
3853
|
+
pageSize?: number;
|
|
3854
|
+
/** A token identifying a page of results the server should return. Typically, this is the value of ListBidResponsesWithoutBidsResponse.nextPageToken returned from the previous call to the bidResponsesWithoutBids.list method. */
|
|
3855
|
+
pageToken?: string;
|
|
3856
|
+
/** Returns response with indentations and line breaks. */
|
|
3857
|
+
prettyPrint?: boolean;
|
|
3858
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3859
|
+
quotaUser?: string;
|
|
3860
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3861
|
+
upload_protocol?: string;
|
|
3862
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3863
|
+
uploadType?: string;
|
|
3864
|
+
}): Request<ListBidResponsesWithoutBidsResponse>;
|
|
3865
|
+
}
|
|
3866
|
+
interface FilteredBidRequestsResource {
|
|
3867
|
+
/** List all reasons that caused a bid request not to be sent for an impression, with the number of bid requests not sent for each reason. */
|
|
3868
|
+
list(request?: {
|
|
3869
|
+
/** V1 error format. */
|
|
3870
|
+
'$.xgafv'?: string;
|
|
3871
|
+
/** OAuth access token. */
|
|
3872
|
+
access_token?: string;
|
|
3873
|
+
/** Data format for response. */
|
|
3874
|
+
alt?: string;
|
|
3875
|
+
/** JSONP */
|
|
3876
|
+
callback?: string;
|
|
3877
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3878
|
+
fields?: string;
|
|
3879
|
+
/** Name of the filter set that should be applied to the requested metrics. For example: - For a bidder-level filter set for bidder 123: `bidders/123/filterSets/abc` - For an account-level filter set for the buyer account representing bidder 123: `bidders/123/accounts/123/filterSets/abc` - For an account-level filter set for the child seat buyer account 456 whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` */
|
|
3880
|
+
filterSetName: string;
|
|
3881
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3882
|
+
key?: string;
|
|
3883
|
+
/** OAuth 2.0 token for the current user. */
|
|
3884
|
+
oauth_token?: string;
|
|
3885
|
+
/** Requested page size. The server may return fewer results than requested. If unspecified, the server will pick an appropriate default. */
|
|
3886
|
+
pageSize?: number;
|
|
3887
|
+
/** A token identifying a page of results the server should return. Typically, this is the value of ListFilteredBidRequestsResponse.nextPageToken returned from the previous call to the filteredBidRequests.list method. */
|
|
3888
|
+
pageToken?: string;
|
|
3889
|
+
/** Returns response with indentations and line breaks. */
|
|
3890
|
+
prettyPrint?: boolean;
|
|
3891
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3892
|
+
quotaUser?: string;
|
|
3893
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3894
|
+
upload_protocol?: string;
|
|
3895
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3896
|
+
uploadType?: string;
|
|
3897
|
+
}): Request<ListFilteredBidRequestsResponse>;
|
|
3898
|
+
}
|
|
3899
|
+
interface CreativesResource {
|
|
3900
|
+
/** List all creatives associated with a specific reason for which bids were filtered, with the number of bids filtered for each creative. */
|
|
3901
|
+
list(request?: {
|
|
3902
|
+
/** V1 error format. */
|
|
3903
|
+
'$.xgafv'?: string;
|
|
3904
|
+
/** OAuth access token. */
|
|
3905
|
+
access_token?: string;
|
|
3906
|
+
/** Data format for response. */
|
|
3907
|
+
alt?: string;
|
|
3908
|
+
/** JSONP */
|
|
3909
|
+
callback?: string;
|
|
3910
|
+
/** The ID of the creative status for which to retrieve a breakdown by creative. See [creative-status-codes](https://developers.google.com/authorized-buyers/rtb/downloads/creative-status-codes). */
|
|
3911
|
+
creativeStatusId: number;
|
|
3912
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3913
|
+
fields?: string;
|
|
3914
|
+
/** Name of the filter set that should be applied to the requested metrics. For example: - For a bidder-level filter set for bidder 123: `bidders/123/filterSets/abc` - For an account-level filter set for the buyer account representing bidder 123: `bidders/123/accounts/123/filterSets/abc` - For an account-level filter set for the child seat buyer account 456 whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` */
|
|
3915
|
+
filterSetName: string;
|
|
3916
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3917
|
+
key?: string;
|
|
3918
|
+
/** OAuth 2.0 token for the current user. */
|
|
3919
|
+
oauth_token?: string;
|
|
3920
|
+
/** Requested page size. The server may return fewer results than requested. If unspecified, the server will pick an appropriate default. */
|
|
3921
|
+
pageSize?: number;
|
|
3922
|
+
/** A token identifying a page of results the server should return. Typically, this is the value of ListCreativeStatusBreakdownByCreativeResponse.nextPageToken returned from the previous call to the filteredBids.creatives.list method. */
|
|
3923
|
+
pageToken?: string;
|
|
3924
|
+
/** Returns response with indentations and line breaks. */
|
|
3925
|
+
prettyPrint?: boolean;
|
|
3926
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3927
|
+
quotaUser?: string;
|
|
3928
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3929
|
+
upload_protocol?: string;
|
|
3930
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3931
|
+
uploadType?: string;
|
|
3932
|
+
}): Request<ListCreativeStatusBreakdownByCreativeResponse>;
|
|
3933
|
+
}
|
|
3934
|
+
interface DetailsResource {
|
|
3935
|
+
/** List all details associated with a specific reason for which bids were filtered, with the number of bids filtered for each detail. */
|
|
3936
|
+
list(request?: {
|
|
3937
|
+
/** V1 error format. */
|
|
3938
|
+
'$.xgafv'?: string;
|
|
3939
|
+
/** OAuth access token. */
|
|
3940
|
+
access_token?: string;
|
|
3941
|
+
/** Data format for response. */
|
|
3942
|
+
alt?: string;
|
|
3943
|
+
/** JSONP */
|
|
3944
|
+
callback?: string;
|
|
3945
|
+
/** The ID of the creative status for which to retrieve a breakdown by detail. See [creative-status-codes](https://developers.google.com/authorized-buyers/rtb/downloads/creative-status-codes). Details are only available for statuses 10, 14, 15, 17, 18, 19, 86, and 87. */
|
|
3946
|
+
creativeStatusId: number;
|
|
3947
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3948
|
+
fields?: string;
|
|
3949
|
+
/** Name of the filter set that should be applied to the requested metrics. For example: - For a bidder-level filter set for bidder 123: `bidders/123/filterSets/abc` - For an account-level filter set for the buyer account representing bidder 123: `bidders/123/accounts/123/filterSets/abc` - For an account-level filter set for the child seat buyer account 456 whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` */
|
|
3950
|
+
filterSetName: string;
|
|
3951
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3952
|
+
key?: string;
|
|
3953
|
+
/** OAuth 2.0 token for the current user. */
|
|
3954
|
+
oauth_token?: string;
|
|
3955
|
+
/** Requested page size. The server may return fewer results than requested. If unspecified, the server will pick an appropriate default. */
|
|
3956
|
+
pageSize?: number;
|
|
3957
|
+
/** A token identifying a page of results the server should return. Typically, this is the value of ListCreativeStatusBreakdownByDetailResponse.nextPageToken returned from the previous call to the filteredBids.details.list method. */
|
|
3958
|
+
pageToken?: string;
|
|
3959
|
+
/** Returns response with indentations and line breaks. */
|
|
3960
|
+
prettyPrint?: boolean;
|
|
3961
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3962
|
+
quotaUser?: string;
|
|
3963
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3964
|
+
upload_protocol?: string;
|
|
3965
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3966
|
+
uploadType?: string;
|
|
3967
|
+
}): Request<ListCreativeStatusBreakdownByDetailResponse>;
|
|
3968
|
+
}
|
|
3969
|
+
interface FilteredBidsResource {
|
|
3970
|
+
/** List all reasons for which bids were filtered, with the number of bids filtered for each reason. */
|
|
3971
|
+
list(request?: {
|
|
3972
|
+
/** V1 error format. */
|
|
3973
|
+
'$.xgafv'?: string;
|
|
3974
|
+
/** OAuth access token. */
|
|
3975
|
+
access_token?: string;
|
|
3976
|
+
/** Data format for response. */
|
|
3977
|
+
alt?: string;
|
|
3978
|
+
/** JSONP */
|
|
3979
|
+
callback?: string;
|
|
3980
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3981
|
+
fields?: string;
|
|
3982
|
+
/** Name of the filter set that should be applied to the requested metrics. For example: - For a bidder-level filter set for bidder 123: `bidders/123/filterSets/abc` - For an account-level filter set for the buyer account representing bidder 123: `bidders/123/accounts/123/filterSets/abc` - For an account-level filter set for the child seat buyer account 456 whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` */
|
|
3983
|
+
filterSetName: string;
|
|
3984
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3985
|
+
key?: string;
|
|
3986
|
+
/** OAuth 2.0 token for the current user. */
|
|
3987
|
+
oauth_token?: string;
|
|
3988
|
+
/** Requested page size. The server may return fewer results than requested. If unspecified, the server will pick an appropriate default. */
|
|
3989
|
+
pageSize?: number;
|
|
3990
|
+
/** A token identifying a page of results the server should return. Typically, this is the value of ListFilteredBidsResponse.nextPageToken returned from the previous call to the filteredBids.list method. */
|
|
3991
|
+
pageToken?: string;
|
|
3992
|
+
/** Returns response with indentations and line breaks. */
|
|
3993
|
+
prettyPrint?: boolean;
|
|
3994
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3995
|
+
quotaUser?: string;
|
|
3996
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3997
|
+
upload_protocol?: string;
|
|
3998
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3999
|
+
uploadType?: string;
|
|
4000
|
+
}): Request<ListFilteredBidsResponse>;
|
|
4001
|
+
creatives: CreativesResource;
|
|
4002
|
+
details: DetailsResource;
|
|
4003
|
+
}
|
|
4004
|
+
interface ImpressionMetricsResource {
|
|
4005
|
+
/** Lists all metrics that are measured in terms of number of impressions. */
|
|
4006
|
+
list(request?: {
|
|
4007
|
+
/** V1 error format. */
|
|
4008
|
+
'$.xgafv'?: string;
|
|
4009
|
+
/** OAuth access token. */
|
|
4010
|
+
access_token?: string;
|
|
4011
|
+
/** Data format for response. */
|
|
4012
|
+
alt?: string;
|
|
4013
|
+
/** JSONP */
|
|
4014
|
+
callback?: string;
|
|
4015
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4016
|
+
fields?: string;
|
|
4017
|
+
/** Name of the filter set that should be applied to the requested metrics. For example: - For a bidder-level filter set for bidder 123: `bidders/123/filterSets/abc` - For an account-level filter set for the buyer account representing bidder 123: `bidders/123/accounts/123/filterSets/abc` - For an account-level filter set for the child seat buyer account 456 whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` */
|
|
4018
|
+
filterSetName: string;
|
|
4019
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
4020
|
+
key?: string;
|
|
4021
|
+
/** OAuth 2.0 token for the current user. */
|
|
4022
|
+
oauth_token?: string;
|
|
4023
|
+
/** Requested page size. The server may return fewer results than requested. If unspecified, the server will pick an appropriate default. */
|
|
4024
|
+
pageSize?: number;
|
|
4025
|
+
/** A token identifying a page of results the server should return. Typically, this is the value of ListImpressionMetricsResponse.nextPageToken returned from the previous call to the impressionMetrics.list method. */
|
|
4026
|
+
pageToken?: string;
|
|
4027
|
+
/** Returns response with indentations and line breaks. */
|
|
4028
|
+
prettyPrint?: boolean;
|
|
4029
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
4030
|
+
quotaUser?: string;
|
|
4031
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4032
|
+
upload_protocol?: string;
|
|
4033
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4034
|
+
uploadType?: string;
|
|
4035
|
+
}): Request<ListImpressionMetricsResponse>;
|
|
4036
|
+
}
|
|
4037
|
+
interface LosingBidsResource {
|
|
4038
|
+
/** List all reasons for which bids lost in the auction, with the number of bids that lost for each reason. */
|
|
4039
|
+
list(request?: {
|
|
4040
|
+
/** V1 error format. */
|
|
4041
|
+
'$.xgafv'?: string;
|
|
4042
|
+
/** OAuth access token. */
|
|
4043
|
+
access_token?: string;
|
|
4044
|
+
/** Data format for response. */
|
|
4045
|
+
alt?: string;
|
|
4046
|
+
/** JSONP */
|
|
4047
|
+
callback?: string;
|
|
4048
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4049
|
+
fields?: string;
|
|
4050
|
+
/** Name of the filter set that should be applied to the requested metrics. For example: - For a bidder-level filter set for bidder 123: `bidders/123/filterSets/abc` - For an account-level filter set for the buyer account representing bidder 123: `bidders/123/accounts/123/filterSets/abc` - For an account-level filter set for the child seat buyer account 456 whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` */
|
|
4051
|
+
filterSetName: string;
|
|
4052
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
4053
|
+
key?: string;
|
|
4054
|
+
/** OAuth 2.0 token for the current user. */
|
|
4055
|
+
oauth_token?: string;
|
|
4056
|
+
/** Requested page size. The server may return fewer results than requested. If unspecified, the server will pick an appropriate default. */
|
|
4057
|
+
pageSize?: number;
|
|
4058
|
+
/** A token identifying a page of results the server should return. Typically, this is the value of ListLosingBidsResponse.nextPageToken returned from the previous call to the losingBids.list method. */
|
|
4059
|
+
pageToken?: string;
|
|
4060
|
+
/** Returns response with indentations and line breaks. */
|
|
4061
|
+
prettyPrint?: boolean;
|
|
4062
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
4063
|
+
quotaUser?: string;
|
|
4064
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4065
|
+
upload_protocol?: string;
|
|
4066
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4067
|
+
uploadType?: string;
|
|
4068
|
+
}): Request<ListLosingBidsResponse>;
|
|
4069
|
+
}
|
|
4070
|
+
interface NonBillableWinningBidsResource {
|
|
4071
|
+
/** List all reasons for which winning bids were not billable, with the number of bids not billed for each reason. */
|
|
4072
|
+
list(request?: {
|
|
4073
|
+
/** V1 error format. */
|
|
4074
|
+
'$.xgafv'?: string;
|
|
4075
|
+
/** OAuth access token. */
|
|
4076
|
+
access_token?: string;
|
|
4077
|
+
/** Data format for response. */
|
|
4078
|
+
alt?: string;
|
|
4079
|
+
/** JSONP */
|
|
4080
|
+
callback?: string;
|
|
4081
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4082
|
+
fields?: string;
|
|
4083
|
+
/** Name of the filter set that should be applied to the requested metrics. For example: - For a bidder-level filter set for bidder 123: `bidders/123/filterSets/abc` - For an account-level filter set for the buyer account representing bidder 123: `bidders/123/accounts/123/filterSets/abc` - For an account-level filter set for the child seat buyer account 456 whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` */
|
|
4084
|
+
filterSetName: string;
|
|
4085
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
4086
|
+
key?: string;
|
|
4087
|
+
/** OAuth 2.0 token for the current user. */
|
|
4088
|
+
oauth_token?: string;
|
|
4089
|
+
/** Requested page size. The server may return fewer results than requested. If unspecified, the server will pick an appropriate default. */
|
|
4090
|
+
pageSize?: number;
|
|
4091
|
+
/** A token identifying a page of results the server should return. Typically, this is the value of ListNonBillableWinningBidsResponse.nextPageToken returned from the previous call to the nonBillableWinningBids.list method. */
|
|
4092
|
+
pageToken?: string;
|
|
4093
|
+
/** Returns response with indentations and line breaks. */
|
|
4094
|
+
prettyPrint?: boolean;
|
|
4095
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
4096
|
+
quotaUser?: string;
|
|
4097
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4098
|
+
upload_protocol?: string;
|
|
4099
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4100
|
+
uploadType?: string;
|
|
4101
|
+
}): Request<ListNonBillableWinningBidsResponse>;
|
|
4102
|
+
}
|
|
4103
|
+
interface FilterSetsResource {
|
|
4104
|
+
/** Creates the specified filter set for the account with the given account ID. */
|
|
4105
|
+
create(request: {
|
|
4106
|
+
/** V1 error format. */
|
|
4107
|
+
'$.xgafv'?: string;
|
|
4108
|
+
/** OAuth access token. */
|
|
4109
|
+
access_token?: string;
|
|
4110
|
+
/** Data format for response. */
|
|
4111
|
+
alt?: string;
|
|
4112
|
+
/** JSONP */
|
|
4113
|
+
callback?: string;
|
|
4114
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4115
|
+
fields?: string;
|
|
4116
|
+
/** Whether the filter set is transient, or should be persisted indefinitely. By default, filter sets are not transient. If transient, it will be available for at least 1 hour after creation. */
|
|
4117
|
+
isTransient?: boolean;
|
|
4118
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
4119
|
+
key?: string;
|
|
4120
|
+
/** OAuth 2.0 token for the current user. */
|
|
4121
|
+
oauth_token?: string;
|
|
4122
|
+
/** Name of the owner (bidder or account) of the filter set to be created. For example: - For a bidder-level filter set for bidder 123: `bidders/123` - For an account-level filter set for the buyer account representing bidder 123: `bidders/123/accounts/123` - For an account-level filter set for the child seat buyer account 456 whose bidder is 123: `bidders/123/accounts/456` */
|
|
4123
|
+
ownerName: string;
|
|
4124
|
+
/** Returns response with indentations and line breaks. */
|
|
4125
|
+
prettyPrint?: boolean;
|
|
4126
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
4127
|
+
quotaUser?: string;
|
|
4128
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4129
|
+
upload_protocol?: string;
|
|
4130
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4131
|
+
uploadType?: string;
|
|
4132
|
+
/** Request body */
|
|
4133
|
+
resource: FilterSet;
|
|
4134
|
+
}): Request<FilterSet>;
|
|
4135
|
+
create(
|
|
4136
|
+
request: {
|
|
4137
|
+
/** V1 error format. */
|
|
4138
|
+
'$.xgafv'?: string;
|
|
4139
|
+
/** OAuth access token. */
|
|
4140
|
+
access_token?: string;
|
|
4141
|
+
/** Data format for response. */
|
|
4142
|
+
alt?: string;
|
|
4143
|
+
/** JSONP */
|
|
4144
|
+
callback?: string;
|
|
4145
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4146
|
+
fields?: string;
|
|
4147
|
+
/** Whether the filter set is transient, or should be persisted indefinitely. By default, filter sets are not transient. If transient, it will be available for at least 1 hour after creation. */
|
|
4148
|
+
isTransient?: boolean;
|
|
4149
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
4150
|
+
key?: string;
|
|
4151
|
+
/** OAuth 2.0 token for the current user. */
|
|
4152
|
+
oauth_token?: string;
|
|
4153
|
+
/** Name of the owner (bidder or account) of the filter set to be created. For example: - For a bidder-level filter set for bidder 123: `bidders/123` - For an account-level filter set for the buyer account representing bidder 123: `bidders/123/accounts/123` - For an account-level filter set for the child seat buyer account 456 whose bidder is 123: `bidders/123/accounts/456` */
|
|
4154
|
+
ownerName: string;
|
|
4155
|
+
/** Returns response with indentations and line breaks. */
|
|
4156
|
+
prettyPrint?: boolean;
|
|
4157
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
4158
|
+
quotaUser?: string;
|
|
4159
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4160
|
+
upload_protocol?: string;
|
|
4161
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4162
|
+
uploadType?: string;
|
|
4163
|
+
},
|
|
4164
|
+
body: FilterSet
|
|
4165
|
+
): Request<FilterSet>;
|
|
4166
|
+
/** Deletes the requested filter set from the account with the given account ID. */
|
|
4167
|
+
delete(request?: {
|
|
4168
|
+
/** V1 error format. */
|
|
4169
|
+
'$.xgafv'?: string;
|
|
4170
|
+
/** OAuth access token. */
|
|
4171
|
+
access_token?: string;
|
|
4172
|
+
/** Data format for response. */
|
|
4173
|
+
alt?: string;
|
|
4174
|
+
/** JSONP */
|
|
4175
|
+
callback?: string;
|
|
4176
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4177
|
+
fields?: string;
|
|
4178
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
4179
|
+
key?: string;
|
|
4180
|
+
/** Full name of the resource to delete. For example: - For a bidder-level filter set for bidder 123: `bidders/123/filterSets/abc` - For an account-level filter set for the buyer account representing bidder 123: `bidders/123/accounts/123/filterSets/abc` - For an account-level filter set for the child seat buyer account 456 whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` */
|
|
4181
|
+
name: string;
|
|
4182
|
+
/** OAuth 2.0 token for the current user. */
|
|
4183
|
+
oauth_token?: string;
|
|
4184
|
+
/** Returns response with indentations and line breaks. */
|
|
4185
|
+
prettyPrint?: boolean;
|
|
4186
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
4187
|
+
quotaUser?: string;
|
|
4188
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4189
|
+
upload_protocol?: string;
|
|
4190
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4191
|
+
uploadType?: string;
|
|
4192
|
+
}): Request<{}>;
|
|
4193
|
+
/** Retrieves the requested filter set for the account with the given account ID. */
|
|
4194
|
+
get(request?: {
|
|
4195
|
+
/** V1 error format. */
|
|
4196
|
+
'$.xgafv'?: string;
|
|
4197
|
+
/** OAuth access token. */
|
|
4198
|
+
access_token?: string;
|
|
4199
|
+
/** Data format for response. */
|
|
4200
|
+
alt?: string;
|
|
4201
|
+
/** JSONP */
|
|
4202
|
+
callback?: string;
|
|
4203
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4204
|
+
fields?: string;
|
|
4205
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
4206
|
+
key?: string;
|
|
4207
|
+
/** Full name of the resource being requested. For example: - For a bidder-level filter set for bidder 123: `bidders/123/filterSets/abc` - For an account-level filter set for the buyer account representing bidder 123: `bidders/123/accounts/123/filterSets/abc` - For an account-level filter set for the child seat buyer account 456 whose bidder is 123: `bidders/123/accounts/456/filterSets/abc` */
|
|
4208
|
+
name: string;
|
|
4209
|
+
/** OAuth 2.0 token for the current user. */
|
|
4210
|
+
oauth_token?: string;
|
|
4211
|
+
/** Returns response with indentations and line breaks. */
|
|
4212
|
+
prettyPrint?: boolean;
|
|
4213
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
4214
|
+
quotaUser?: string;
|
|
4215
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4216
|
+
upload_protocol?: string;
|
|
4217
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4218
|
+
uploadType?: string;
|
|
4219
|
+
}): Request<FilterSet>;
|
|
4220
|
+
/** Lists all filter sets for the account with the given account ID. */
|
|
4221
|
+
list(request?: {
|
|
4222
|
+
/** V1 error format. */
|
|
4223
|
+
'$.xgafv'?: string;
|
|
4224
|
+
/** OAuth access token. */
|
|
4225
|
+
access_token?: string;
|
|
4226
|
+
/** Data format for response. */
|
|
4227
|
+
alt?: string;
|
|
4228
|
+
/** JSONP */
|
|
4229
|
+
callback?: string;
|
|
4230
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4231
|
+
fields?: string;
|
|
4232
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
4233
|
+
key?: string;
|
|
4234
|
+
/** OAuth 2.0 token for the current user. */
|
|
4235
|
+
oauth_token?: string;
|
|
4236
|
+
/** Name of the owner (bidder or account) of the filter sets to be listed. For example: - For a bidder-level filter set for bidder 123: `bidders/123` - For an account-level filter set for the buyer account representing bidder 123: `bidders/123/accounts/123` - For an account-level filter set for the child seat buyer account 456 whose bidder is 123: `bidders/123/accounts/456` */
|
|
4237
|
+
ownerName: string;
|
|
4238
|
+
/** Requested page size. The server may return fewer results than requested. If unspecified, the server will pick an appropriate default. */
|
|
4239
|
+
pageSize?: number;
|
|
4240
|
+
/** A token identifying a page of results the server should return. Typically, this is the value of ListFilterSetsResponse.nextPageToken returned from the previous call to the accounts.filterSets.list method. */
|
|
4241
|
+
pageToken?: string;
|
|
4242
|
+
/** Returns response with indentations and line breaks. */
|
|
4243
|
+
prettyPrint?: boolean;
|
|
4244
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
4245
|
+
quotaUser?: string;
|
|
4246
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4247
|
+
upload_protocol?: string;
|
|
4248
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4249
|
+
uploadType?: string;
|
|
4250
|
+
}): Request<ListFilterSetsResponse>;
|
|
4251
|
+
bidMetrics: BidMetricsResource;
|
|
4252
|
+
bidResponseErrors: BidResponseErrorsResource;
|
|
4253
|
+
bidResponsesWithoutBids: BidResponsesWithoutBidsResource;
|
|
4254
|
+
filteredBidRequests: FilteredBidRequestsResource;
|
|
4255
|
+
filteredBids: FilteredBidsResource;
|
|
4256
|
+
impressionMetrics: ImpressionMetricsResource;
|
|
4257
|
+
losingBids: LosingBidsResource;
|
|
4258
|
+
nonBillableWinningBids: NonBillableWinningBidsResource;
|
|
4259
|
+
}
|
|
4260
|
+
interface BuyersResource {
|
|
4261
|
+
filterSets: FilterSetsResource;
|
|
4262
|
+
}
|
|
3767
4263
|
|
|
3768
4264
|
const accounts: AccountsResource;
|
|
3769
4265
|
|
|
3770
4266
|
const bidders: BiddersResource;
|
|
4267
|
+
|
|
4268
|
+
const buyers: BuyersResource;
|
|
3771
4269
|
}
|
|
3772
4270
|
}
|