Skip to content

Commit

Permalink
5-13 reset, email added to registration
Browse files Browse the repository at this point in the history
  • Loading branch information
jonchurch committed May 13, 2023
1 parent 6f1b553 commit b507414
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/models/RegisterRequest.ts
Expand Up @@ -31,6 +31,12 @@ export interface RegisterRequest {
* @memberof RegisterRequest
*/
symbol: string;
/**
* Your email address. This is used if you reserved your call sign between resets.
* @type {string}
* @memberof RegisterRequest
*/
email?: string;
}


Expand Down Expand Up @@ -70,6 +76,7 @@ export function RegisterRequestFromJSONTyped(json: any, ignoreDiscriminator: boo

'faction': json['faction'],
'symbol': json['symbol'],
'email': !exists(json, 'email') ? undefined : json['email'],
};
}

Expand All @@ -84,6 +91,7 @@ export function RegisterRequestToJSON(value?: RegisterRequest | null): any {

'faction': value.faction,
'symbol': value.symbol,
'email': value.email,
};
}

0 comments on commit b507414

Please sign in to comment.