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

com.univapay.sdk.models.request.charge.TimeRange Maven / Gradle / Ivy

There is a newer version: 0.2.35
Show newest version
package com.univapay.sdk.models.request.charge;

import java.time.OffsetDateTime;

public class TimeRange {

  private OffsetDateTime fromDate;

  private OffsetDateTime toDate;

  public TimeRange() {}

  public TimeRange(OffsetDateTime fromDate, OffsetDateTime toDate) {
    this.fromDate = fromDate;
    this.toDate = toDate;
  }

  public TimeRange withFromDate(OffsetDateTime fromDate) {
    this.fromDate = fromDate;
    return this;
  }

  public TimeRange withToDate(OffsetDateTime toDate) {
    this.toDate = toDate;
    return this;
  }

  public OffsetDateTime getFromDate() {
    return fromDate;
  }

  public OffsetDateTime getToDate() {
    return toDate;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy