paytm-pg-node-sdk
Version:
Paytm SDK for Node.js
198 lines (197 loc) • 3.61 kB
JavaScript
;
/**
* Copyright (C) 2019 Paytm.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ShippingInfo = void 0;
/* class: ShippingInfo */
class ShippingInfo {
/**
* ShippingInfo constructor.
*/
constructor() {
}
/**
* @return string
*/
getMerchantShippingId() {
return this.merchantShippingId;
}
/**
* @param string merchantShippingId
* @return void
*/
setMerchantShippingId(merchantShippingId) {
this.merchantShippingId = merchantShippingId;
}
/**
* @return string
*/
getTrackingNo() {
return this.trackingNo;
}
/**
* @param string trackingNo
* @return void
*/
setTrackingNo(trackingNo) {
this.trackingNo = trackingNo;
}
/**
* @return string
*/
getCarrier() {
return this.carrier;
}
/**
* @param string carrier
* @return void
*/
setCarrier(carrier) {
this.carrier = carrier;
}
/**
* @return Money
*/
getChargeAmount() {
return this.chargeAmount;
}
/**
* @param Money chargeAmount
* @return void
*/
setChargeAmount(chargeAmount) {
this.chargeAmount = chargeAmount;
}
/**
* @return string
*/
getCountryName() {
return this.countryName;
}
/**
* @param string countryName
* @return void
*/
setCountryName(countryName) {
this.countryName = countryName;
}
/**
* @return string
*/
getStateName() {
return this.stateName;
}
/**
* @param string stateName
* @return void
*/
setStateName(stateName) {
this.stateName = stateName;
}
/**
* @return string
*/
getCityName() {
return this.cityName;
}
/**
* @param string cityName
* @return void
*/
setCityName(cityName) {
this.cityName = cityName;
}
/**
* @return string
*/
getAddress1() {
return this.address1;
}
/**
* @param string address1
* @return void
*/
setAddress1(address1) {
this.address1 = address1;
}
/**
* @return string
*/
getAddress2() {
return this.address2;
}
/**
* @param string address2
* @return void
*/
setAddress2(address2) {
this.address2 = address2;
}
/**
* @return string
*/
getFirstName() {
return this.firstName;
}
/**
* @param string firstName
* @return void
*/
setFirstName(firstName) {
this.firstName = firstName;
}
/**
* @return string
*/
getLastName() {
return this.lastName;
}
/**
* @param string lastName
* @return void
*/
setLastName(lastName) {
this.lastName = lastName;
}
/**
* @return string
*/
getMobileNo() {
return this.mobileNo;
}
/**
* @param string mobileNo
* @return void
*/
setMobileNo(mobileNo) {
this.mobileNo = mobileNo;
}
/**
* @return string
*/
getZipCode() {
return this.zipCode;
}
/**
* @param string zipCode
* @return void
*/
setZipCode(zipCode) {
this.zipCode = zipCode;
}
/**
* @return string
*/
getEmail() {
return this.email;
}
/**
* @param string email
* @return void
*/
setEmail(email) {
this.email = email;
}
}
exports.ShippingInfo = ShippingInfo;