AxAuthCreateUserCommandSchema: {
    $schema: string;
    additionalProperties: boolean;
    description: string;
    properties: {
        environment_id: {
            description: string;
            format: string;
            maxLength: number;
            minLength: number;
            type: string;
        };
        tenant_id: {
            description: string;
            format: string;
            maxLength: number;
            minLength: number;
            type: string;
        };
        user: {
            additionalProperties: boolean;
            description: string;
            properties: {
                email: {
                    description: string;
                    type: string;
                };
                first_name: {
                    description: string;
                    type: string;
                };
                last_name: {
                    description: string;
                    type: string;
                };
                password: {
                    description: string;
                    type: string;
                };
            };
            required: string[];
            title: string;
            type: string;
        };
        user_store_id: {
            description: string;
            format: string;
            maxLength: number;
            minLength: number;
            type: string;
        };
    };
    required: string[];
    title: string;
    type: string;
} = AxAuthCreateUserCommand

Type declaration

  • $schema: string
  • additionalProperties: boolean
  • description: string
  • properties: {
        environment_id: {
            description: string;
            format: string;
            maxLength: number;
            minLength: number;
            type: string;
        };
        tenant_id: {
            description: string;
            format: string;
            maxLength: number;
            minLength: number;
            type: string;
        };
        user: {
            additionalProperties: boolean;
            description: string;
            properties: {
                email: {
                    description: string;
                    type: string;
                };
                first_name: {
                    description: string;
                    type: string;
                };
                last_name: {
                    description: string;
                    type: string;
                };
                password: {
                    description: string;
                    type: string;
                };
            };
            required: string[];
            title: string;
            type: string;
        };
        user_store_id: {
            description: string;
            format: string;
            maxLength: number;
            minLength: number;
            type: string;
        };
    }
    • environment_id: {
          description: string;
          format: string;
          maxLength: number;
          minLength: number;
          type: string;
      }
      • description: string
      • format: string
      • maxLength: number
      • minLength: number
      • type: string
    • tenant_id: {
          description: string;
          format: string;
          maxLength: number;
          minLength: number;
          type: string;
      }
      • description: string
      • format: string
      • maxLength: number
      • minLength: number
      • type: string
    • user: {
          additionalProperties: boolean;
          description: string;
          properties: {
              email: {
                  description: string;
                  type: string;
              };
              first_name: {
                  description: string;
                  type: string;
              };
              last_name: {
                  description: string;
                  type: string;
              };
              password: {
                  description: string;
                  type: string;
              };
          };
          required: string[];
          title: string;
          type: string;
      }
      • additionalProperties: boolean
      • description: string
      • properties: {
            email: {
                description: string;
                type: string;
            };
            first_name: {
                description: string;
                type: string;
            };
            last_name: {
                description: string;
                type: string;
            };
            password: {
                description: string;
                type: string;
            };
        }
        • email: {
              description: string;
              type: string;
          }
          • description: string
          • type: string
        • first_name: {
              description: string;
              type: string;
          }
          • description: string
          • type: string
        • last_name: {
              description: string;
              type: string;
          }
          • description: string
          • type: string
        • password: {
              description: string;
              type: string;
          }
          • description: string
          • type: string
      • required: string[]
      • title: string
      • type: string
    • user_store_id: {
          description: string;
          format: string;
          maxLength: number;
          minLength: number;
          type: string;
      }
      • description: string
      • format: string
      • maxLength: number
      • minLength: number
      • type: string
  • required: string[]
  • title: string
  • type: string

Generated using TypeDoc