All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wix.restaurants.builders.DeliveryBuilder Maven / Gradle / Ivy

There is a newer version: 1.22.0
Show newest version
package com.wix.restaurants.builders;

import com.openrest.olo.dispatches.DeliveryDispatch;
import com.openrest.v1_1.Address;

public class DeliveryBuilder {
    private final DeliveryDispatch deliveryDispatch = new DeliveryDispatch();

    public DeliveryBuilder toAddress(Address address) {
        deliveryDispatch.address = address;
        return this;
    }

    public DeliveryDispatch build() {
        return deliveryDispatch;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy