use of com.google.api.ads.admanager.axis.v202205.Order in project pwinty-java-sdk by OddPrints.
the class OrderUpdater method addPhotoToOrder.
public void addPhotoToOrder(int orderIdToUpdate, URL newUrl, Photo.Type type, int copies, Photo.Sizing sizing) {
Pwinty pwinty = getPwinty(environment);
System.out.println(pwinty.getOrder(orderIdToUpdate));
Order order = pwinty.getOrder(orderIdToUpdate);
order.addPhoto(newUrl, type, copies, sizing);
}
use of com.google.api.ads.admanager.axis.v202205.Order in project pwinty-java-sdk by OddPrints.
the class OrderUpdater method updateImageUrl.
public void updateImageUrl(int orderIdToUpdate, int photoIdToUpdate, URL newUrl) {
Pwinty pwinty = getPwinty(environment);
System.out.println(pwinty.getOrder(orderIdToUpdate));
Order order = pwinty.getOrder(orderIdToUpdate);
List<Photo> photos = order.getPhotos();
Photo.Type type = null;
Photo.Sizing sizing = null;
int copies = 0;
for (Photo photo : photos) {
if (photo.getId() == photoIdToUpdate) {
type = photo.getType();
sizing = photo.getSizing();
copies = photo.getCopies();
order.deletePhoto(photo);
}
}
order.addPhoto(newUrl, type, copies, sizing);
}
use of com.google.api.ads.admanager.axis.v202205.Order in project pwinty-java-sdk by OddPrints.
the class OrderUpdater method display.
public void display(int orderId) {
Pwinty pwinty = getPwinty(environment);
Order order = pwinty.getOrder(orderId);
System.out.println(order);
}
use of com.google.api.ads.admanager.axis.v202205.Order in project pwinty-java-sdk by OddPrints.
the class OrderUpdater method updateImageUrl.
public void updateImageUrl(int orderIdToUpdate, int photoIdToUpdate, URL newUrl) {
Pwinty pwinty = getPwinty(environment);
System.out.println(pwinty.getOrder(orderIdToUpdate));
Order order = pwinty.getOrder(orderIdToUpdate);
List<Photo> photos = order.getPhotos();
Photo.Type type = null;
Photo.Sizing sizing = null;
int copies = 0;
for (Photo photo : photos) {
if (photo.getId() == photoIdToUpdate) {
type = photo.getType();
sizing = photo.getSizing();
copies = photo.getCopies();
order.deletePhoto(photo);
}
}
order.addPhoto(newUrl, type, copies, sizing);
}
use of com.google.api.ads.admanager.axis.v202205.Order in project googleads-java-lib by googleads.
the class CreateOrders method runExample.
/**
* Runs the example.
*
* @param adManagerServices the services factory.
* @param session the session.
* @param advertiserId the ID of the advertiser (company) that all creatives will be assigned to.
* @param traffickerId the ID of the trafficker (user) associated with this order.
* @throws ApiException if the API request failed with one or more service errors.
* @throws RemoteException if the API request failed due to other errors.
*/
public static void runExample(AdManagerServices adManagerServices, AdManagerSession session, long advertiserId, long traffickerId) throws RemoteException {
// Get the OrderService.
OrderServiceInterface orderService = adManagerServices.get(session, OrderServiceInterface.class);
// Create an order.
Order order = new Order();
order.setName("Order #" + new Random().nextInt(Integer.MAX_VALUE));
order.setAdvertiserId(advertiserId);
order.setTraffickerId(traffickerId);
// Create the order on the server.
Order[] orders = orderService.createOrders(new Order[] { order });
for (Order createdOrder : orders) {
System.out.printf("An order with ID %d and name '%s' was created.%n", createdOrder.getId(), createdOrder.getName());
}
}
Aggregations