-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: vehicle management functions (#132)
- Loading branch information
Showing
12 changed files
with
400 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
libGroup=com.smartcar.sdk | ||
libName=java-sdk | ||
libVersion=3.6.0 | ||
libVersion=3.7.0 | ||
libDescription=Smartcar Java SDK |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package com.smartcar.sdk.data; | ||
|
||
public class Connection { | ||
private String vehicleId; | ||
private String userId; | ||
private String connectedAt; | ||
|
||
public String getVehicleId() { | ||
return vehicleId; | ||
} | ||
|
||
public String getUserId() { | ||
return userId; | ||
} | ||
|
||
public String getConnectedAt() { | ||
return connectedAt; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "Connection{" + | ||
"vehicleId='" + vehicleId + '\'' + | ||
", userId='" + userId + '\'' + | ||
", createdAt='" + connectedAt + '\'' + | ||
'}'; | ||
} | ||
} |
Oops, something went wrong.