com.popbill.api.kakao.KakaoButton Maven / Gradle / Ivy
/*
* Copyright 2006-2014 linkhub.co.kr, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://www.apache.org/licenses/LICENSE-2.0.txt
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package com.popbill.api.kakao;
import java.io.Serializable;
public class KakaoButton implements Serializable{
private static final long serialVersionUID = -2238767228371308148L;
private String n;
private String t;
private String u1;
private String u2;
public String getN() {
return n;
}
public void setN(String n) {
this.n = n;
}
public String getT() {
return t;
}
public void setT(String t) {
this.t = t;
}
public String getU1() {
return u1;
}
public void setU1(String u1) {
this.u1 = u1;
}
public String getU2() {
return u2;
}
public void setU2(String u2) {
this.u2 = u2;
}
}