-
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 #260 from teamforus/release/v0.4.2
- Loading branch information
Showing
123 changed files
with
3,171 additions
and
720 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
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
18 changes: 18 additions & 0 deletions
18
data/src/main/java/io/forus/me/android/data/entity/sign/request/EmailValidateRequest.kt
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,18 @@ | ||
package com.gigawatt.android.data.net.sign.models.request | ||
|
||
import com.google.gson.annotations.Expose | ||
import com.google.gson.annotations.SerializedName | ||
import io.forus.me.android.data.entity.sign.request.SignRecords | ||
import java.io.Serializable | ||
|
||
|
||
|
||
class EmailValidateRequest : Serializable{ | ||
|
||
@SerializedName("email") | ||
@Expose | ||
var email: String? = null | ||
|
||
|
||
|
||
} |
28 changes: 28 additions & 0 deletions
28
data/src/main/java/io/forus/me/android/data/entity/sign/response/ValidateEmail.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,28 @@ | ||
package io.forus.me.android.data.entity.sign.response; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
public class ValidateEmail { | ||
|
||
@SerializedName("used") | ||
private Boolean used; | ||
|
||
@SerializedName("valid") | ||
private Boolean valid; | ||
|
||
public Boolean getUsed() { | ||
return used; | ||
} | ||
|
||
public void setUsed(Boolean used) { | ||
this.used = used; | ||
} | ||
|
||
public Boolean getValid() { | ||
return valid; | ||
} | ||
|
||
public void setValid(Boolean valid) { | ||
this.valid = valid; | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
data/src/main/java/io/forus/me/android/data/entity/sign/response/ValidateEmailResult.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,18 @@ | ||
package io.forus.me.android.data.entity.sign.response; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
public class ValidateEmailResult { | ||
|
||
@SerializedName("email") | ||
private ValidateEmail email; | ||
|
||
|
||
public ValidateEmail getEmail() { | ||
return email; | ||
} | ||
|
||
public void setEmail(ValidateEmail email) { | ||
this.email = email; | ||
} | ||
} |
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
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
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
Oops, something went wrong.