001package com.plivo.api.models.brand;
002
003
004public class UseCase {
005    private String name;
006    private String code;
007    private String details;
008
009    /**
010     * @return getName return the name
011     */
012    public String getName() {
013        return name;
014    }
015
016    /**
017     * @return getCode return the code
018     */
019    public String getCode() {
020        return code;
021    }
022
023    /**
024     * @return getDetails return the details
025     */
026    public String getDetails() {
027        return details;
028    }
029
030}
031
032