Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1 KB

File metadata and controls

28 lines (21 loc) · 1 KB

AuthorizedAppDataRep

Properties

Name Type Description Notes
_links { [key: string]: Link; } [optional] [default to undefined]
_id string The ID of the authorized application [optional] [default to undefined]
isScim boolean Whether the application is authorized through SCIM [optional] [default to undefined]
name string The authorized application name [optional] [default to undefined]
maintainerName string The name of the maintainer for this authorized application [optional] [default to undefined]

Example

import { AuthorizedAppDataRep } from 'launchdarkly-api-typescript';

const instance: AuthorizedAppDataRep = {
    _links,
    _id,
    isScim,
    name,
    maintainerName,
};

[Back to Model list] [Back to API list] [Back to README]