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

com.github.codedrinker.fm.entity.FMResult Maven / Gradle / Ivy

/*
 * Copyright 2017 Chunlei Wang
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License 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.github.codedrinker.fm.entity;

public class FMResult {
    private Error error;
    private String recipient_id;
    private String message_id;
    private String result;

    public Error getError() {
        return error;
    }

    public void setError(Error error) {
        this.error = error;
    }

    public String getRecipient_id() {
        return recipient_id;
    }

    public void setRecipient_id(String recipient_id) {
        this.recipient_id = recipient_id;
    }

    public String getMessage_id() {
        return message_id;
    }

    public void setMessage_id(String message_id) {
        this.message_id = message_id;
    }

    public String getResult() {
        return result;
    }

    public void setResult(String result) {
        this.result = result;
    }

    public static class Error {
        private String message;
        private String type;
        private String code;
        private String error_subcode;
        private String fbtrace_id;

        public String getMessage() {
            return message;
        }

        public void setMessage(String message) {
            this.message = message;
        }

        public String getType() {
            return type;
        }

        public void setType(String type) {
            this.type = type;
        }

        public String getCode() {
            return code;
        }

        public void setCode(String code) {
            this.code = code;
        }

        public String getError_subcode() {
            return error_subcode;
        }

        public void setError_subcode(String error_subcode) {
            this.error_subcode = error_subcode;
        }

        public String getFbtrace_id() {
            return fbtrace_id;
        }

        public void setFbtrace_id(String fbtrace_id) {
            this.fbtrace_id = fbtrace_id;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy