Skip to content

Commit

Permalink
feat: add selfie media field
Browse files Browse the repository at this point in the history
  • Loading branch information
mthocur committed Aug 22, 2024
1 parent 61ae71d commit 2291e1c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions kyc.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ type MakeKyc struct {
Gender string `json:"gender"`
State string `json:"state"`
ResidenceProofDocument string `json:"residence_proof_document" example:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAYAAACtWK6eA"`
SelfieMedia string `json:"selfie_media" example:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAYAAACtWK6eA"`
}
type UpdateKyc struct {
FirstName string `json:"first_name" example:"Ahmet"`
Expand Down Expand Up @@ -71,6 +72,7 @@ type UpdateKyc struct {
Gender string `json:"gender"`
State string `json:"state"`
ResidenceProofDocument string `json:"residence_proof_document" example:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAYAAACtWK6eA"`
SelfieMedia string `json:"selfie_media" example:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADICAYAAACtWK6eA"`
}
type MakeKycResponse struct {
Message string `json:"message" example:"Kyc created successfully"`
Expand Down

0 comments on commit 2291e1c

Please sign in to comment.