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

com.univapay.sdk.models.common.DescriptorProvidedConfiguration Maven / Gradle / Ivy

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

import com.google.gson.annotations.SerializedName;

public class DescriptorProvidedConfiguration {

  @SerializedName("name")
  private final String name;

  @SerializedName("phone_number")
  private final String phoneNumber;

  public DescriptorProvidedConfiguration(String name, String phoneNumber) {
    this.name = name;
    this.phoneNumber = phoneNumber;
  }

  public String getPhoneNumber() {
    return phoneNumber;
  }

  public String getName() {
    return name;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy