MCPcopy Create free account
hub / github.com/devaccuracy/ledgerforge / CreateIdentity

Struct CreateIdentity

api/model/identity.go:20–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18import "time"
19
20type 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
41type TokenizeRequest struct {
42 Fields []string `json:"fields" binding:"required"`

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected