| 18 | import "time" |
| 19 | |
| 20 | type CreateIdentity struct { |
| 21 | IdentityType string `json:"identity_type"` |
| 22 | FirstName string `json:"first_name"` |
| 23 | LastName string `json:"last_name"` |
| 24 | OtherNames string `json:"other_names"` |
| 25 | Gender string `json:"gender"` |
| 26 | Dob time.Time `json:"dob"` |
| 27 | EmailAddress string `json:"email_address"` |
| 28 | PhoneNumber string `json:"phone_number"` |
| 29 | Nationality string `json:"nationality"` |
| 30 | OrganizationName string `json:"organization_name"` |
| 31 | Category string `json:"category"` |
| 32 | Street string `json:"street"` |
| 33 | Country string `json:"country"` |
| 34 | State string `json:"state"` |
| 35 | PostCode string `json:"post_code"` |
| 36 | City string `json:"city"` |
| 37 | CreatedAt time.Time `json:"created_at"` |
| 38 | MetaData map[string]interface{} `json:"meta_data"` |
| 39 | } |
| 40 | |
| 41 | type TokenizeRequest struct { |
| 42 | Fields []string `json:"fields" binding:"required"` |
nothing calls this directly
no outgoing calls
no test coverage detected