package com.ectrip.cyt.response; /** * 作者:dufang on 2023/7/3 15:31 */ public class PassengerInfosBean { // "credentials": "11010119900307029X", // "credentialsType": "ID_CARD", // "name": "11", // "phone": "13544041798", // "voucher": "PMS_CEC6C3D9C7D0BABABBBCC5C4B2CE" private String credentials; private String credentialsType; private String name; private String phone; private String voucher; public String getCredentials() { return credentials; } public void setCredentials(String credentials) { this.credentials = credentials; } public String getCredentialsType() { return credentialsType; } public void setCredentialsType(String credentialsType) { this.credentialsType = credentialsType; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getPhone() { return phone; } public void setPhone(String phone) { this.phone = phone; } public String getVoucher() { return voucher; } public void setVoucher(String voucher) { this.voucher = voucher; } }