Interface AccountNameRequest

interface AccountNameRequest {
    first_name: string;
    id: number;
    lang: string;
    last_name: string;
    link_href: string;
    link_label: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

first_name: string

First name in request

id: number

Request ID needed to cancel the request

lang: string

Text to display to user

last_name: string

Last name in request

link_href: string

href for link in lang field

link_label: string

label to display for link in lang field

Generated using TypeDoc