-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #227 from teamforus/release/v0.4.0
- Loading branch information
Showing
176 changed files
with
5,964 additions
and
783 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
21 changes: 21 additions & 0 deletions
21
data/src/main/java/io/forus/me/android/data/entity/records/request/ValidateRecord.java
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,21 @@ | ||
package io.forus.me.android.data.entity.records.request; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
public class ValidateRecord { | ||
|
||
@SerializedName("organization_id") | ||
private Long organization_id; | ||
|
||
public ValidateRecord(Long organization_id) { | ||
this.organization_id = organization_id; | ||
} | ||
|
||
public Long getOrganization_id() { | ||
return organization_id; | ||
} | ||
|
||
public void setOrganization_id(Long organization_id) { | ||
this.organization_id = organization_id; | ||
} | ||
} |
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
37 changes: 37 additions & 0 deletions
37
...src/main/java/io/forus/me/android/data/entity/records/response/ValidatorOrganization.java
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,37 @@ | ||
package io.forus.me.android.data.entity.records.response; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
/** | ||
* Created by maestrovs on 29.04.2020. | ||
*/ | ||
public class ValidatorOrganization { | ||
|
||
@SerializedName("id") | ||
private Long id; | ||
|
||
@SerializedName("name") | ||
private String name; | ||
|
||
|
||
public ValidatorOrganization(Long id, String name) { | ||
this.id = id; | ||
this.name = name; | ||
} | ||
|
||
public Long getId() { | ||
return id; | ||
} | ||
|
||
public void setId(Long id) { | ||
this.id = id; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
public void setName(String name) { | ||
this.name = name; | ||
} | ||
} |
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
Oops, something went wrong.