Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-searchads360</artifactId>
<version>v23-rev20260810-2.0.0</version>
<version>v23-rev20260820-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-searchads360:v23-rev20260810-2.0.0'
implementation 'com.google.apis:google-api-services-searchads360:v23-rev20260820-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,13 @@ public final class GoogleAdsSearchads360V23ServicesMutateOperation extends com.g
@com.google.api.client.util.Key
private GoogleAdsSearchads360V23ServicesCampaignDraftOperation campaignDraftOperation;

/**
* A campaign goal config mutate operation.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private GoogleAdsSearchads360V23ServicesCampaignGoalConfigOperation campaignGoalConfigOperation;

/**
* A campaign group mutate operation.
* The value may be {@code null}.
Expand Down Expand Up @@ -998,6 +1005,23 @@ public GoogleAdsSearchads360V23ServicesMutateOperation setCampaignDraftOperation
return this;
}

/**
* A campaign goal config mutate operation.
* @return value or {@code null} for none
*/
public GoogleAdsSearchads360V23ServicesCampaignGoalConfigOperation getCampaignGoalConfigOperation() {
return campaignGoalConfigOperation;
}

/**
* A campaign goal config mutate operation.
* @param campaignGoalConfigOperation campaignGoalConfigOperation or {@code null} for none
*/
public GoogleAdsSearchads360V23ServicesMutateOperation setCampaignGoalConfigOperation(GoogleAdsSearchads360V23ServicesCampaignGoalConfigOperation campaignGoalConfigOperation) {
this.campaignGoalConfigOperation = campaignGoalConfigOperation;
return this;
}

/**
* A campaign group mutate operation.
* @return value or {@code null} for none
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,13 @@ public final class GoogleAdsSearchads360V23ServicesMutateOperationResponse exten
@com.google.api.client.util.Key
private GoogleAdsSearchads360V23ServicesMutateCampaignDraftResult campaignDraftResult;

/**
* The result for the campaign goal config mutate.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private GoogleAdsSearchads360V23ServicesMutateCampaignGoalConfigResult campaignGoalConfigResult;

/**
* The result for the campaign group mutate.
* The value may be {@code null}.
Expand Down Expand Up @@ -998,6 +1005,23 @@ public GoogleAdsSearchads360V23ServicesMutateOperationResponse setCampaignDraftR
return this;
}

/**
* The result for the campaign goal config mutate.
* @return value or {@code null} for none
*/
public GoogleAdsSearchads360V23ServicesMutateCampaignGoalConfigResult getCampaignGoalConfigResult() {
return campaignGoalConfigResult;
}

/**
* The result for the campaign goal config mutate.
* @param campaignGoalConfigResult campaignGoalConfigResult or {@code null} for none
*/
public GoogleAdsSearchads360V23ServicesMutateOperationResponse setCampaignGoalConfigResult(GoogleAdsSearchads360V23ServicesMutateCampaignGoalConfigResult campaignGoalConfigResult) {
this.campaignGoalConfigResult = campaignGoalConfigResult;
return this;
}

/**
* The result for the campaign group mutate.
* @return value or {@code null} for none
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-searchads360/v23/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-searchads360</artifactId>
<version>v23-rev20260810-2.0.0</version>
<name>Search Ads 360 Reporting API v23-rev20260810-2.0.0</name>
<version>v23-rev20260820-2.0.0</version>
<name>Search Ads 360 Reporting API v23-rev20260820-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-searchads360/v23/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-searchads360</artifactId>
<version>v23-rev20260810-2.0.0</version>
<version>v23-rev20260820-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-searchads360:v23-rev20260810-2.0.0'
implementation 'com.google.apis:google-api-services-searchads360:v23-rev20260820-2.0.0'
}
```

Expand Down
Loading