Class VenuePatchRequest

java.lang.Object
org.localify.venue.dto.VenuePatchRequest

public class VenuePatchRequest extends Object
Represents a request to patch a venue.
  • Constructor Details

    • VenuePatchRequest

      public VenuePatchRequest()
  • Method Details

    • getName

      public Optional<String> getName()
      Gets the name of the venue.
      Returns:
      The name.
    • setName

      public void setName(Optional<String> name)
      Sets the name of the venue.
      Parameters:
      name - The name.
    • getAddress

      public Optional<String> getAddress()
      Gets the address of the venue.
      Returns:
      The address.
    • setAddress

      public void setAddress(Optional<String> address)
      Sets the address of the venue.
      Parameters:
      address - The address.
    • getCityId

      public Optional<UUID> getCityId()
      Gets the ID of the city where the venue is located.
      Returns:
      The city ID.
    • setCityId

      public void setCityId(Optional<UUID> cityId)
      Sets the ID of the city where the venue is located.
      Parameters:
      cityId - The city ID.
    • getLatitude

      public Optional<Double> getLatitude()
      Gets the latitude of the venue.
      Returns:
      The latitude.
    • setLatitude

      public void setLatitude(Optional<Double> latitude)
      Sets the latitude of the venue.
      Parameters:
      latitude - The latitude.
    • getLongitude

      public Optional<Double> getLongitude()
      Gets the longitude of the venue.
      Returns:
      The longitude.
    • setLongitude

      public void setLongitude(Optional<Double> longitude)
      Sets the longitude of the venue.
      Parameters:
      longitude - The longitude.