sub
create_customer_client {
my
$self
=
shift
;
my
$request_body
=
shift
;
my
$http_method
=
'POST'
;
my
$request_path
=
'v18/customers/{+customerId}:createCustomerClient'
;
my
$response_type
=
'Google::Ads::GoogleAds::V18::Services::CustomerService::CreateCustomerClientResponse'
;
return
$self
->SUPER::call(
$http_method
,
$request_path
,
$request_body
,
$response_type
);
}
sub
list_accessible_customers {
my
$self
=
shift
;
my
$request_body
=
shift
;
my
$http_method
=
'GET'
;
my
$request_path
=
'v18/customers:listAccessibleCustomers'
;
my
$response_type
=
'Google::Ads::GoogleAds::V18::Services::CustomerService::ListAccessibleCustomersResponse'
;
return
$self
->SUPER::call(
$http_method
,
$request_path
,
$request_body
,
$response_type
);
}
sub
mutate {
my
$self
=
shift
;
my
$request_body
=
shift
;
my
$http_method
=
'POST'
;
my
$request_path
=
'v18/customers/{+customerId}:mutate'
;
my
$response_type
=
'Google::Ads::GoogleAds::V18::Services::CustomerService::MutateCustomerResponse'
;
return
$self
->SUPER::call(
$http_method
,
$request_path
,
$request_body
,
$response_type
);
}
1;