BasicAuthenticatedUser

Properties

additionalProperties: Map<string,Object>;

You can pass any number of arbitrary properties in the enclosing object (there is no field actually named additionalProperties).

Source

1
2
3
4
5
6
7
8
interface BasicAuthenticatedUser {

  /**
   * You can pass any number of arbitrary properties in the enclosing object (there is no field actually named additionalProperties).
   */
  additionalProperties: Map<string,Object>;

}