UNPKG

@devopness/sdk-js

Version:

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

32 lines (31 loc) 813 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. */ import { SourceProviderName } from './source-provider-name'; /** * * @export * @interface SocialAccountCreate */ export interface SocialAccountCreate { /** * * @type {SourceProviderName} * @memberof SocialAccountCreate */ provider: SourceProviderName; /** * The temporary code forwarded by the OAuth provider as a parameter to our callback URL. Must be at least 8 characters. * @type {string} * @memberof SocialAccountCreate */ callback_code: string; }