UNPKG

@devopness/sdk-js

Version:

Devopness API JS/TS SDK - Painless essential DevOps to everyone

37 lines (36 loc) 796 B
/** * devopness API * Devopness API - Painless essential DevOps to everyone * * The version of the OpenAPI document: latest * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface SocialAccountStatus */ export interface SocialAccountStatus { /** * Name of the provider * @type {string} * @memberof SocialAccountStatus */ provider: string; /** * If the account is currently connected * @type {boolean} * @memberof SocialAccountStatus */ connected: boolean; /** * URL of the connection * @type {string} * @memberof SocialAccountStatus */ connect_url: string; }