summaryrefslogtreecommitdiff
path: root/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/UnsubscribeWayPointsResponse.java
blob: 8804892aa6d8f9684ae44908e1e0d997a93873ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.smartdevicelink.proxy.rpc;

import com.smartdevicelink.protocol.enums.FunctionID;
import com.smartdevicelink.proxy.RPCResponse;

import java.util.Hashtable;

public class UnsubscribeWayPointsResponse extends RPCResponse {

    public UnsubscribeWayPointsResponse() {
        super(FunctionID.UNSUBSCRIBE_WAY_POINTS.toString());
    }
    public UnsubscribeWayPointsResponse(Hashtable<String, Object> hash) {
        super(hash);
    }
}