com.logmein.gotowebinar_2_0.api.model.PstnInfoUpdate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gotowebinar-api Show documentation
Show all versions of gotowebinar-api Show documentation
Java SDK for the GoToWebinar REST API
/*
* © 2017 LogMeIn, Inc. All Rights Reserved.
* All rights reserved.
*
* This software is distributed under the terms and conditions of the
* LogMeIn SDK License Agreement. Please see file LICENSE for details.
*
* Auto-generated file.
*/
package com.logmein.gotowebinar_2_0.api.model;
import com.logmein.gotowebinar_2_0.api.model.TollCountries;
import com.logmein.gotowebinar_2_0.api.model.TollFreeCountries;
import java.util.ArrayList;
import java.util.List;
import com.logmein.gotowebinar_2_0.api.common.JsonUtil;
/**
* Defines the audio/conferencing settings for the specified webinar. It required to pass 'tollFreeCountries' or 'tollCountries' or both.
*/
public class PstnInfoUpdate {
/* Defines in which countries toll free PSTN numbers are available. Possible values are AE, AR, AT, AU, BE, BG, BH, BR, BY, CA, CH, CL, CN, CO, CZ, DE, DK, ES, FI, FR, GB, GR, HK, HU, ID, IE, IL, IN, IS, IT, JP, KR, LU, MX, MY, NL, NO, NZ, PA, PE, PH, PL, PT, RO, RU, SA, SE, SG, TH, TR, TW, UA, US, UY, VN, ZA */
private List tollFreeCountries = new ArrayList();
/* Defines in which countries toll PSTN numbers are available. Possible values are AT, AU, BE, CA, CH, DE, DK, ES, FI, FR, GB, IE, IT, NL, NO, NZ, SE, US */
private List tollCountries = new ArrayList();
/**
* @return Defines in which countries toll free PSTN numbers are available. Possible values are AE, AR, AT, AU, BE, BG, BH, BR, BY, CA, CH, CL, CN, CO, CZ, DE, DK, ES, FI, FR, GB, GR, HK, HU, ID, IE, IL, IN, IS, IT, JP, KR, LU, MX, MY, NL, NO, NZ, PA, PE, PH, PL, PT, RO, RU, SA, SE, SG, TH, TR, TW, UA, US, UY, VN, ZA
*/
public List getTollFreeCountries() {
return tollFreeCountries;
}
/**
* @param tollFreeCountries Defines in which countries toll free PSTN numbers are available. Possible values are AE, AR, AT, AU, BE, BG, BH, BR, BY, CA, CH, CL, CN, CO, CZ, DE, DK, ES, FI, FR, GB, GR, HK, HU, ID, IE, IL, IN, IS, IT, JP, KR, LU, MX, MY, NL, NO, NZ, PA, PE, PH, PL, PT, RO, RU, SA, SE, SG, TH, TR, TW, UA, US, UY, VN, ZA
*/
public void setTollFreeCountries(List tollFreeCountries) {
this.tollFreeCountries = tollFreeCountries;
}
/**
* @return Defines in which countries toll PSTN numbers are available. Possible values are AT, AU, BE, CA, CH, DE, DK, ES, FI, FR, GB, IE, IT, NL, NO, NZ, SE, US
*/
public List getTollCountries() {
return tollCountries;
}
/**
* @param tollCountries Defines in which countries toll PSTN numbers are available. Possible values are AT, AU, BE, CA, CH, DE, DK, ES, FI, FR, GB, IE, IT, NL, NO, NZ, SE, US
*/
public void setTollCountries(List tollCountries) {
this.tollCountries = tollCountries;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PstnInfoUpdate {\n");
String tollFreeCountriesString = JsonUtil.Stringify(tollFreeCountries);
if (tollFreeCountriesString != null && !tollFreeCountriesString.isEmpty())
sb.append(String.format(" tollFreeCountries: %s\n", tollFreeCountriesString));
String tollCountriesString = JsonUtil.Stringify(tollCountries);
if (tollCountriesString != null && !tollCountriesString.isEmpty())
sb.append(String.format(" tollCountries: %s\n", tollCountriesString));
sb.append("}\n");
return sb.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy